mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
22 lines
390 B
Plaintext
22 lines
390 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/string_out.in
|
|
*/
|
|
|
|
circuit Foo {
|
|
s1: [char; 13];
|
|
}
|
|
|
|
function takes_string(s: [char; 13]) -> bool {
|
|
return s == "Hello, World!";
|
|
}
|
|
|
|
function main(s1: [char; 13]) -> [char; 13] {
|
|
let f = Foo { s1 };
|
|
let b = takes_string(s1);
|
|
|
|
let result = f.s1 == "Hello, World!" ? s1 : "abcdefghjklmn";
|
|
return result;
|
|
} |