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