Files
j-lang/projects/functions.j
Jose Luis Montañes Ojados 2c91cbb561 Add // line comments, grouped parentheses, and NODE_NOP
- Parse // comments in parse_statement by consuming tokens until newline
- Add NODE_NOP for no-op statements (comments)
- Support grouped expressions with parentheses in parse_term
2026-02-16 22:41:52 +01:00

3 lines
38 B
Plaintext

x = "Hello"
y = 2 * (4 - 2)
println(y)