* (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
17 lines
218 B
Plaintext
17 lines
218 B
Plaintext
|
|
PROCEDURE Main()
|
|
|
|
LOCAL aArray := { { NIL } }
|
|
|
|
aArray[ 1 /*first*/ ][ 1 /* second */ ] := [Hello]
|
|
|
|
? aArray[ 1 ][ 1 ]
|
|
|
|
? 'World "Peace[!]"'
|
|
|
|
? "Harbour 'Power[!]'"
|
|
|
|
? [King 'Clipper "!"']
|
|
|
|
RETURN
|