mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +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
|
|
}
|