mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-23 17:43:06 +03:00
12 lines
236 B
Plaintext
12 lines
236 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/string.in
|
|
- inputs/weird.in
|
|
*/
|
|
|
|
function main(s1: [char; 13], s2: [char; 4]) -> bool {
|
|
let hello: [char; 13] = `Hello, World!`;
|
|
return hello == s1 && `nope` != s2;
|
|
} |