mirror of
https://github.com/powdr-labs/powdr.git
synced 2026-04-20 03:03:25 -04:00
7 lines
348 B
NASM
7 lines
348 B
NASM
/// This is a built-in function taking a string argument and printing it on stdout
|
|
/// when evaluated.
|
|
/// It returns an empty array so that it can be used at constraint level.
|
|
/// This symbol is not an empty array, the actual semantics are overridden.
|
|
let print: string -> constr[] = [];
|
|
|
|
let println: string -> constr[] = |msg| print(msg + "\n"); |