home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
CLIPPER
/
MISC
/
BIPL.ZIP
/
IDOL.ZIP
/
AUTOPARN.IOL
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1991-12-30
|
277 b
|
16 lines
#
# Here is a sample test of automatic parenthesizing
#
class autotest(public yo)
method foo(x)
return x
end
initially
self.yo := "yo, bro"
end
procedure main()
x := autotest()
write(x$foo(x$yo)) # yo almost becomes a data item, notation-wise
end