Smalltalk Hello World (2006)(wiki.c2.com)3 points·by ggcr·10 ay önce·2 commentswiki.c2.comSmalltalk Hello World (2006)https://wiki.c2.com/?SmalltalkHelloWorld2 commentsPost comment[–]igouy·10 ay öncereplyWith a previous Pharo version: $ bin/pharo --headless Pharo10-SNAPSHOT-64bit-502addc.image hello.st pharo is the unchanged VM (like the JVM).Pharo10-SNAPSHOT-64bit-502addc.image is the unchanged distro image file.hello.st is a plain text file, the hello world program. $ cat hello.st Stdio stdout nextPutAll: 'hello world'; nextPut: Character lf.! SmalltalkImage current snapshot: false andQuit: true![–]igouy·10 ay öncereply@ggcr The wiki page shows about 80 long lines of comment.What in particular do you think we should look-at and what would you like us to learn from that?
pharo is the unchanged VM (like the JVM).
Pharo10-SNAPSHOT-64bit-502addc.image is the unchanged distro image file.
hello.st is a plain text file, the hello world program.