2023-10-17 15:10:35 +02:00
|
|
|
main() {
|
2024-07-13 00:13:13 +02:00
|
|
|
print("Hello", 5)
|
2024-07-04 12:32:56 +02:00
|
|
|
}
|
|
|
|
|
2024-07-13 00:13:13 +02:00
|
|
|
print(address, length) {
|
|
|
|
write(1, address, length)
|
2024-06-27 10:12:41 +02:00
|
|
|
}
|
|
|
|
|
2024-07-13 00:13:13 +02:00
|
|
|
write(fd, address, length) {
|
|
|
|
syscall(1, fd, address, length)
|
2024-06-14 10:36:01 +02:00
|
|
|
}
|