| grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » Echo(string) | Version 2.2 |
Echo 関数は、System Monitor に文字列を出力します。
この関数は何も返しません。
System Monitor に "Hello World!" と出力します。
Lua |
return function() -- Prints 'Hellow World!' in the system monitor in yellow text. Echo("Hello World!") end |