12 lines
132 B
Plaintext
Raw Normal View History

2023-10-17 15:10:35 +02:00
main() {
2024-06-18 16:42:56 +02:00
hello()
}
hello() {
write := 1
stdout := 1
2024-06-18 16:42:56 +02:00
address := 4194305
length := 3
2024-06-14 11:48:28 +02:00
2024-06-18 16:42:56 +02:00
syscall(write, stdout, address, length)
2024-06-14 10:36:01 +02:00
}