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