Mercurial Hosting > luan
comparison scripts/mmake.luan @ 321:7f7708e8fdd4
remove import statement
git-svn-id: https://luan-java.googlecode.com/svn/trunk@322 21e917c8-12df-6dd8-5cb6-c86387c605b9
author | fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9> |
---|---|
date | Sun, 08 Feb 2015 07:26:20 +0000 |
parents | fed1893821bf |
children |
comparison
equal
deleted
inserted
replaced
320:fed1893821bf | 321:7f7708e8fdd4 |
---|---|
1 import "luan:Luan" | 1 local Luan = require "luan:Luan" |
2 import "luan:Table" | |
3 import "luan:Io" | |
4 import "luan:String" | |
5 import "luan:Time" | |
6 | |
7 local ipairs = Luan.ipairs | 2 local ipairs = Luan.ipairs |
3 local Table = require "luan:Table" | |
4 local Io = require "luan:Io" | |
8 local print = Io.print | 5 local print = Io.print |
6 local String = require "luan:String" | |
7 local Time = require "luan:Time" | |
9 | 8 |
10 | 9 |
11 compiler = Table.concat( { "javac -g -encoding UTF8", ... }, " " ) | 10 compiler = Table.concat( { "javac -g -encoding UTF8", ... }, " " ) |
12 | 11 |
13 function mmake(dir) | 12 function mmake(dir) |