* (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
150 B
Plaintext
17 lines
150 B
Plaintext
|
|
PROCEDURE Main()
|
|
|
|
LOCAL a, b, c
|
|
|
|
a := { {, } }
|
|
|
|
a[ 1, 2 ] := [Hello]
|
|
|
|
c := { 1 }
|
|
|
|
b := a[ c[ 1 ] ][ Val( [ 2 ] ) ]
|
|
|
|
? b
|
|
|
|
RETURN
|