Online Compiler Nasm

# Write your code here print("Hello world!")
The code prints the text "Hello world!" to the screen. This is a simple program that outputs a string.

- The code uses the `print()` function, which displays whatever is inside the parentheses.
- The text inside the quotes is a string literal, meaning it is treated as plain text, not as code.