help-smalltalk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Simple Program Won't Run


From: Jan Vrany
Subject: Re: Simple Program Won't Run
Date: Fri, 15 Jan 2021 19:30:43 +0000
User-agent: Evolution 3.38.2-1


On Fri, 2021-01-15 at 12:38 -0500, Gary Highberger wrote:
> Hi Everybody,
> 
> Obviously what programming skills I have are other than Oops :-)
> 
> What Oops rule(s) does the following program, autoRun,st, break? Why
> is MyA
> written as #MyA in the error message? Why doesn't the compiler
> understand
> MyA? It's defined in the immediately preceding line.
> 
> Gary Highberger
> 
> cat autoRun.st
> MyA := Array new: 10
> MyA at: 1 put: 'one'
> 3 printNl
> 'hello world' printNl
> 


You need to separate statements by dot, i.e., 

MyA := Array new: 10. "<-- see the dot"
MyA at: 1 put: 'one'. "<-- see the dot"
3 printNl. "<-- see the dot"
'hello world' printNl . "<-- see the dot"

Think of dot as a dot at the end of sentence or
as a ; in most of other languages. 

HTH, Jan



> $ gst autoRun.st
> Object: 10 error: did not understand #MyA
> MessageNotUnderstood(Exception)>>signal (ExcHandling.st:254)
> SmallInteger(Object)>>doesNotUnderstand: #MyA (SysExcept.st:1448)
> UndefinedObject>>executeStatements (autoRun.st:1)
> 3
> 'hello world'
> $





reply via email to

[Prev in Thread] Current Thread [Next in Thread]