Echo(string)

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

説明

Echo 関数は、System Monitor に文字列を出力します。

引数

  • string:
    System Monitor に出力する文字列。

戻り値

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

System Monitor に "Hello World!" と出力します。

Lua
return function()
-- Prints 'Hellow World!' in the system monitor in yellow text.
Echo("Hello World!")
end