mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
14 lines
246 B
Plaintext
14 lines
246 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/ascii.in
|
|
- inputs/escaped_unicode.in
|
|
- inputs/escaped.in
|
|
- inputs/hex.in
|
|
- inputs/unicode.in
|
|
*/
|
|
|
|
function main(character: char) -> char {
|
|
return character != 'a' ? 'a' : 'Z';
|
|
} |