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

1234567
  1. local h = http.get("http://s.mort.coffee/mortcc/install.lua")
  2. local f = fs.open("tmp", "w")
  3. f.write(h.readAll())
  4. f.close()
  5. shell.run("tmp")
  6. fs.delete("tmp")