12 lines
138 B
Plaintext
Raw Normal View History

2024-07-06 11:06:39 +00:00
main() {
x := 1000
syscall(60, div10(x) / 10 + div(x, 100) * 4 - 40 - x + x)
}
div(x, y) {
return x / y
}
div10(x) {
return x / 10
}