Printf(string)

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » Printf(string) Version 2.0

説明

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

引数

  • string:
    Command Line History に出力する文字列です。

戻り値

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

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

Lua
return function()
Printf("Hello World!")
end