16 lines
174 B
Forth
16 lines
174 B
Forth
module kolok
|
|
|
|
let mutable x = []
|
|
|
|
let mutable refx = ref x
|
|
|
|
let _ = refx <- ref [2]
|
|
//let _ = refx <- ref [true]
|
|
|
|
|
|
printf "%O\n" refx
|
|
printf "%A\n" refx
|
|
|
|
|
|
|