61 lines
450 B
Plaintext
61 lines
450 B
Plaintext
# 1 "examples/variables.ligo"
|
|
# 1 "<built-in>"
|
|
# 1 "<command-line>"
|
|
# 31 "<command-line>"
|
|
# 1 "/usr/include/stdc-predef.h" 1 3 4
|
|
|
|
# 17 "/usr/include/stdc-predef.h" 3 4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 32 "<command-line>" 2
|
|
# 1 "examples/variables.ligo"
|
|
const four : int = 4;
|
|
const name : string = "John Doe";
|
|
|
|
function main (const p : unit ; const s : int) : (list(operation) * int) is
|
|
block {skip} with ((nil : list(operation)), s)
|