ErrPrintf(string)

説明

Lua 関数の ErrPrintf は、Command Line HistorySystem Monitor に赤色のエラーメッセージを出力します。

引数

戻り値

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

Command Line History と System Monitor に "This is a red error message!" というエラーメッセージを出力します。

local function main()
    ErrPrintf("This is a red error message!")
end

return main