Add support for line comments.

This commit is contained in:
2023-08-21 02:22:43 -07:00
parent 5455846d7a
commit 0b3700667d
4 changed files with 22 additions and 0 deletions

View File

@ -11,6 +11,8 @@ main = { in
multiply = { a, b in
a * b
}
// calculates the result
calculateSimpleResult = calculateSimple()
calculateComplexResult = calculateComplex()
multiplyResult = multiply(50, 50)