Input & Output
Djazair provides built-in functions for console output and user input.
Console Output
Use print() to output values to stdout. It accepts multiple arguments separated by spaces:
print("Hello World")
print("The answer is", 42)
print("Value:", True, Null, [1, 2])
String Interpolation
Embed expressions inside double-quoted strings using ${expr}:
let name = "Riad"
let age = 30
print("${name} is ${age} years old")
# Output: Riad is 30 years old
User Input
Use input(prompt?) to read a line from stdin:
let name = input("Enter your name: ")
print("Hello, ${name}!")