mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
12 lines
203 B
Plaintext
12 lines
203 B
Plaintext
|
/*
|
||
|
namespace: Compile
|
||
|
expectation: Pass
|
||
|
input_file:
|
||
|
- inputs/string.in
|
||
|
- inputs/weird.in
|
||
|
*/
|
||
|
|
||
|
function main(s1: [char; 13], s2: [char; 4]) -> bool {
|
||
|
s1[..4] = s2;
|
||
|
return s1 != "Hello, World!";
|
||
|
}
|