Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
igouy
on Jan 22, 2019
|
parent
|
context
|
favorite
| on:
Pharo 7.0 released
> I just want a "hello world" example to get an idea what I am actually dealing with.
iirc
something like —
FileStream stdout nextPutAll: 'Hello, world'; cr.
scroot
on Jan 23, 2019
[–]
You can do something like: `Stdio stdout nextPutAll: 'Hello, World!'.`
igouy
on Jan 23, 2019
|
parent
[–]
Are you suggesting that `FileStream stdout` doesn't work, or that using `Stdio stdout` is in some way better, or that `nextPutAll:` will add a newline, or that … ?
scroot
on Jan 23, 2019
|
root
|
parent
[–]
I think `FileStream` is deprecated in the new version of Pharo.
igouy
on Jan 24, 2019
|
root
|
parent
[–]
Thanks.
Consider applying for YC's W25 batch! Applications are open till Nov 12.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
iirc something like —