Последовательность вычислений и Работа с системой типов

This commit is contained in:
2022-05-12 19:10:17 +03:00
parent 98447f2cf7
commit 37d6eab0cd
3 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
// 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