9 lines
306 B
Plaintext
9 lines
306 B
Plaintext
Edge: str("hello: %s") -> call:fmt.printf(str("hello: %s"), var(s)) # a
|
|
Edge: str("world") -> var(s) # var:s
|
|
Edge: var(s) -> call:fmt.printf(str("hello: %s"), var(s)) # b
|
|
Vertex: call:fmt.printf(str("hello: %s"), var(s))
|
|
Vertex: str("greeting")
|
|
Vertex: str("hello: %s")
|
|
Vertex: str("world")
|
|
Vertex: var(s)
|