Wish I knew modulo and printing numerical values to screen. Then I could make a prime sieve ... nasm compiler the code editor app uses is 2.14.02 and it has time limits.
Example of my attempt:
section .data
hw db "hello world,",0
section .text
global _start
_start:
mov rdi,1
loop:
mov eax,4
mov ebx,1
lea ecx,[hw]
lea edx,[rdi]
int 80H
inc rdi
cmp rdi,13
jne loop
mov eax,1
xor ebx,ebx
int 80H