mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
11 lines
112 B
Text
11 lines
112 B
Text
|
|
public fun ref (x) {
|
||
|
|
[x]
|
||
|
|
}
|
||
|
|
|
||
|
|
public fun deref (x) {
|
||
|
|
x[0]
|
||
|
|
}
|
||
|
|
|
||
|
|
public infix ::= before := (x, y) {
|
||
|
|
x[0] := y
|
||
|
|
}
|