diff 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
line wrap: on
line diff
--- a/core/src/luan/modules/mmake.luan	Mon Apr 18 20:40:21 2016 -0600
+++ b/core/src/luan/modules/mmake.luan	Tue Apr 19 15:54:11 2016 -0600
@@ -1,10 +1,10 @@
-local Luan = require "luan:Luan"
+local Luan = require "luan:Luan.luan"
 local ipairs = Luan.ipairs
-local Table = require "luan:Table"
-local Io = require "luan:Io"
+local Table = require "luan:Table.luan"
+local Io = require "luan:Io.luan"
 local print = Io.print
-local String = require "luan:String"
-local Time = require "luan:Time"
+local String = require "luan:String.luan"
+local Time = require "luan:Time.luan"
 
 
 local compiler = Table.concat( { "javac -g -encoding UTF8", ... }, " " )