Added support for all basic math operators

This commit is contained in:
Pasha Bibko
2025-04-28 21:43:52 +01:00
parent d0bb16f263
commit e12088979d
3 changed files with 45 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ func main()
b = 7
int c
c = a + b
c = a / b
return c
}