Skip to content

v0.8.0

Compare
Choose a tag to compare
@hymkor hymkor released this 26 Dec 09:35
· 78 commits to master since this release
  • Add the new function shot(N)

shot(N) is the function to capture the N lines of the screen.

local screen = assert(shot(25))
for i = 1,#screen do
    print( i,screen[i] )
end

  • 新関数shot(N) を追加しました。

shot(N) は画面の N 行をキャプチャーする関数です。