Variables can now be read from

This commit is contained in:
Pasha Bibko
2025-04-28 21:16:54 +01:00
parent cbc179411a
commit ce8f1619a4
4 changed files with 19 additions and 4 deletions

View File

@@ -1,5 +1,13 @@
func main()
{
int result
result = 4
int a
a = 4
int b
b = 7
int c
c = a + b
return c
}