print_int

Write a i32 to stdout.

Syntax

print_int fn (
    number: i32
)

Parameters

number

The integer to be printed.

Example

#start {
    std.print_int(1970)
}

Output

1970