← Back to the index

Module std/console.vv

The console module provides standard input and output utilities.

Example:

import console from "std/console.vv"

console.print("Hello, World!")

Table of Contents

Exports

fun print(v) extern "native"

Prints a value to the standard output, followed by a newline.

Example:

console.print("Hello, World!")
console.print(42)