leo/compiler/tests/function/duplicate_definition.leo

7 lines
100 B
Plaintext
Raw Normal View History

2021-04-07 20:20:58 +03:00
function main() {
console.log("{}", 1u8);
}
function main() {
console.log("{}", 2u8);
}