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