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