mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-03 17:39:02 +00:00
15 lines
122 B
Plaintext
15 lines
122 B
Plaintext
func add(int a, int b)
|
|
{
|
|
return a + b
|
|
}
|
|
|
|
func main()
|
|
{
|
|
int a
|
|
a = 5 + 2
|
|
|
|
int b = 6 + 1
|
|
|
|
return a + b
|
|
}
|