lang_2023/tests/memory.lang

9 lines
156 B
Text
Raw Normal View History

2023-03-31 12:10:12 +03:00
struct StructWithRef =
2023-05-05 11:59:02 +03:00
& @Int_0
2023-03-31 12:10:12 +03:00
2023-05-13 14:54:48 +03:00
decl test_memory : -> Unit
2023-03-31 12:10:12 +03:00
def test_memory = {
2023-05-13 14:54:48 +03:00
const unique_ref1 <- Int._new: 5
var unique_ref2 <- Array.of: 1 2 3
2023-03-31 12:10:12 +03:00
}