* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
18 lines
191 B
Plaintext
18 lines
191 B
Plaintext
// Testing a static function call
|
|
|
|
PROCEDURE Main()
|
|
|
|
? "From Main()"
|
|
|
|
SecondOne()
|
|
|
|
? "From Main() again"
|
|
|
|
RETURN
|
|
|
|
STATIC FUNCTION SecondOne()
|
|
|
|
? "From Second()"
|
|
|
|
RETURN NIL
|