19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
-- main.mcl --
|
|
# simple operators
|
|
test "t" {
|
|
int64ptr => 42 + 13 - 99,
|
|
}
|
|
-- OUTPUT --
|
|
Edge: FuncValue -> call # fn
|
|
Edge: FuncValue -> call # fn
|
|
Vertex: FuncValue
|
|
Vertex: FuncValue
|
|
Vertex: call
|
|
Vertex: call
|
|
Vertex: const: int(13)
|
|
Vertex: const: int(42)
|
|
Vertex: const: int(99)
|
|
Vertex: const: str("+")
|
|
Vertex: const: str("-")
|
|
Vertex: const: str("t")
|