hello world debloated as fuck! Idk why but for some reason I decided to write assembly. π hello-world-debloated-af/hello.asm Lines 1 to 18 in 655442c .global _start .intel_syntax noprefix // Debloated as fuck! ~ Goldy _start: mov rax, 1 mov rdi, 1 lea rsi, [hello_world] mov rdx, 12 syscall mov rax, 60 mov rdi, 0 syscall hello_world: .asciz "hewwo wowwd\n" How to run. (Linux x86 only) git clone https://github.com/THEGOLDENPRO/hello-world-debloated-af/ cd ./hello-world-debloated-af make make run