Skip to content

Console.info

Prints the arguments to console as info.

Signature

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

Summary

Parameters

ParameterTypeDescription
...anyArguments to inform.

Example

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

stdConsole:info("Initializing...")