comparison core/src/luan/modules/mmake.luan @ 693:ca169567ce07

module URIs must now include ".luan"
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Apr 2016 15:54:11 -0600
parents e387e4021afe
children
comparison
equal deleted inserted replaced
692:7bd97d642f37 693:ca169567ce07
1 local Luan = require "luan:Luan" 1 local Luan = require "luan:Luan.luan"
2 local ipairs = Luan.ipairs 2 local ipairs = Luan.ipairs
3 local Table = require "luan:Table" 3 local Table = require "luan:Table.luan"
4 local Io = require "luan:Io" 4 local Io = require "luan:Io.luan"
5 local print = Io.print 5 local print = Io.print
6 local String = require "luan:String" 6 local String = require "luan:String.luan"
7 local Time = require "luan:Time" 7 local Time = require "luan:Time.luan"
8 8
9 9
10 local compiler = Table.concat( { "javac -g -encoding UTF8", ... }, " " ) 10 local compiler = Table.concat( { "javac -g -encoding UTF8", ... }, " " )
11 11
12 12