Output
Print text or numbers with print.
print writes to the terminal and adds a newline after each call.
fn main() {
print("Hello, Nyra!")
print(42)
}fn main() -> void {
print("Hello, Nyra!")
print(42)
}Output
Hello, Nyra!
42
Fast · Safe · Minimal
Print text or numbers with print.
print writes to the terminal and adds a newline after each call.
fn main() {
print("Hello, Nyra!")
print(42)
}fn main() -> void {
print("Hello, Nyra!")
print(42)
}Output
Hello, Nyra!
42