Hello World the Easy Way

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Hello World the Easy Way

dmacq
VA Smalltalk looks for a file named abt.cnf when the image starts, and, if found, it processes the code inside it.

Version 8.6.2 extends this capability be allowing you to add code to abt.cnf that you want executed after system start up.  You do this by adding the code after a single line that says PostStartup!

Put the following code into an abt.cnf file to do Hello World the easy way.

PostStartUp  !

Transcript show: 'Hello, World';cr !

--
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
To post to this group, send email to [hidden email].
Visit this group at https://groups.google.com/group/va-smalltalk.
For more options, visit https://groups.google.com/d/optout.
Reply | Threaded
Open this post in threaded view
|

Re: Hello World the Easy Way

Louis LaBrunda
 Cool!

 Lou

--
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
To post to this group, send email to [hidden email].
Visit this group at https://groups.google.com/group/va-smalltalk.
For more options, visit https://groups.google.com/d/optout.