タグ

ブックマーク / terralang.org (1)

  • Terra

    Terra is a low-level system programming language that is embedded in and meta-programmed by the Lua programming language: -- This top-level code is plain Lua code. function printhello() -- This is a plain Lua function print("Hello, Lua!") end printhello() -- Terra is backwards compatible with C, we'll use C's io library in our example. C = terralib.includec("stdio.h") -- The keyword 'terra' introd

    bopperjp
    bopperjp 2013/05/20
    Cで書きそうなところをterra関数で書けるLua的スクリプト。ただ、for文のbase indexがLuaと違い0オリジン。
  • 1