12 lines
82 B
Plaintext
Raw Normal View History

2024-07-09 08:28:14 +00:00
main() {
syscall(60, f(1))
}
f(x) {
y := g()
return x + y
}
g() {
return 2
}