12 lines
156 B
Plaintext
12 lines
156 B
Plaintext
const num {
|
|
one 1
|
|
two 2
|
|
three 3
|
|
}
|
|
|
|
main() {
|
|
assert num.one == 1
|
|
assert num.two == 2
|
|
assert num.three == 3
|
|
assert num.one + num.two == num.three
|
|
} |