On Oct 9, 2006, at 11:16 AM, ricardolinerotorres wrote:
> can somebody tell me whats wrong whit this code
> both files are in the same folder
>
> --------------FILE "a.io"---------------------
>
> a := Object clone do(
>
> sayHi :="HI"
>
> sayingHi:=method(write(salude))
>
>
> )
>
> ---------------------------------------------------------
>
> --------------------FILE "c.io"--------------------------
> Importer
>
> objeto:=a clone
>
> a sayingHi
> --------------------------------------------------------
Hi Ricardo,
The first character of a autoimported symbol name has to begin with
an uppercase character.
- Steve
.