Skip to content

Console.print

Prints the given arguments to the console.

Signature

luau
function Console:print(...: any): ()

Summary

Parameters

ParameterTypeDescription
...anyArguments to print.

Example

luau
local console = require("@runtime/console")
local stdConsole = console.allocate()

stdConsole:print("Hello World")