12 lines
156 B
Plaintext
Raw Normal View History

2025-02-15 14:38:01 +01:00
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
}