Gratz auch von mir
Diesmal ganz lowlevel:
Code:
section .data
	hello:     db 'Gratz Luki! :)',10
	helloLen:  equ $-hello

section .text
	global _start

_start:
	mov eax,4
	mov ebx,1
	mov ecx,hello
	mov edx,helloLen
	int 80h

	mov eax,1
	mov ebx,0
	int 80h
Code:
nasm -f elf gratz.asm
ld -s -o gratz gratz.o