7 lines
108 B
Text
7 lines
108 B
Text
|
let x : mut<string> = ref (4)
|
||
|
|
||
|
let main : int =
|
||
|
for i from (0) to (30) {
|
||
|
x := !x + 1
|
||
|
};
|
||
|
!x
|