Updated README

This commit is contained in:
Pasha Bibko
2025-05-11 15:38:59 +01:00
parent 2a47fd1756
commit 9bbac9e8de
2 changed files with 43 additions and 16 deletions

View File

@@ -3,19 +3,11 @@ func add(int a, int b)
return a + b
}
func sub(int c, int d)
{
return add(c, 0 - d)
}
func mul(int e, int f)
{
return e * f
}
func main()
{
int g = mul(add(7, 5), sub(5, 3))
int c = add(1, 2)
return g
# Test int
return c
}