17 lines
238 B
Forth
17 lines
238 B
Forth
// For more information see https://aka.ms/fsharp-console-apps
|
|
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
|
|
|
|
|
|
|