modern-compiler-ml/tiger/testcases/test1.tig

8 lines
128 B
Text
Raw Normal View History

/* an array type and an array variable */
let
type arrtype = array of int
var arr1:arrtype := arrtype [10] of 0
in
arr1
end