leo/compiler/tests/char/circuit.leo
2021-05-13 07:16:59 -04:00

9 lines
129 B
Plaintext

circuit Foo {
a: char;
b: char;
c: char;
}
function main(a: char, b: char, c: char) {
let f = Foo { a, b, c };
}