WalkThru error message

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

WalkThru error message

Roelof
Hello,

Im at the point that I have to change the namespace.

But when I change the defenition to this :

Smalltalk defineNameSpace: #Walkthru
     private: false
     imports: 'private Smalltalk .* '
     category: 'Tutorial-Walkthr '

I get a syntax error in the proposed path name.

What went wrong here ?

Roelof

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: WalkThru error message

Holger Guhl
The problem is in the imports declaration. You need to remove the space between "Smalltalk" and the
period.

Cheers, Holger

Am 09.04.2014 12:07, schrieb Roelof Wobben:
> Smalltalk defineNameSpace: #Walkthru
>     private: false
>     imports: 'private Smalltalk .* '
>     category: 'Tutorial-Walkthr '

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: WalkThru error message

Roelof
Holger Guhl schreef op 9-4-2014 13:03:
> The problem is in the imports declaration. You need to remove the
> space between "Smalltalk" and the period.
>
> Cheers, Holger

Thanks,

I changed it to this and now it accepted:

Smalltalk defineNameSpace: #Walkthru
     private: false
     imports: '
             private smalltalk.*
             '
     category: 'Tutorial-Walkthru'

but I ran into another problem.

I can change to this :

initialize
    "Create the initial random number generator for this application"

      myRandom := Random new.

But then I see a message :

Declare Random as

Roelof

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc