[bits 64]
	global _start

	section .data
	message db "Hello, World!"

	section .text
_start:
	mov rax, 1
	mov rdx, 13
	mov rsi, message
	mov rdi, 1
	syscall

	mov rax, 60
	mov rdi, 0
	syscall
