Printf(string)

説明

Lua 関数の Printf は、Command Line HistorySystem Monitor に文字列を出力します。

引数

戻り値

この関数は何も返しません。

Command Line History に "Hello World!" と出力します。

local function main()
    Printf("Hello World!")
end

return main