2017-07-24から1日間の記事一覧

TI-Nspire & Lua / コルーチン 1 / コルーチンを作って開始する

参考: Programming in Lua プログラミング言語Lua公式解説書, pp.99-113 co = coroutine.create(function() print("hello, world") end) -- coroutine.create(函数) という構文でコルーチンを作成する。 print(co) -- 返値はスレッド (1) print(coroutine.st…