Files
j-lang/projects/comment.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

5 lines
84 B
Plaintext

// Esto es un comentario
println("Hello World!")
// Otro comentario mas
println(40)