Computercraft thingies
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

man.lua 115B

123456
  1. local args = {...}
  2. local file = "/manpages/" .. args[1]
  3. local f = fs.open(file, "r")
  4. print(f.readAll())
  5. f.close()