mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-23 03:20:57 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@13642 72102866-910b-0410-8b05-ffd578937521
16 lines
219 B
Smalltalk
16 lines
219 B
Smalltalk
| foo |
|
|
|
|
|
|
"foo is local variable"
|
|
|
|
foo := 'Foo'.
|
|
|
|
Transcript showLine:( 'This is foo : ', foo ).
|
|
|
|
|
|
" bar is created in environment as extern variable "
|
|
|
|
bar := 'Bar'.
|
|
|
|
Transcript showLine:( 'And this is bar: ', bar ).
|
|
|