diff core/src/luan/Luan.java @ 693:ca169567ce07

module URIs must now include ".luan"
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 19 Apr 2016 15:54:11 -0600
parents d3e5414bdf4c
children b620b8e1010f
line wrap: on
line diff
--- a/core/src/luan/Luan.java	Mon Apr 18 20:40:21 2016 -0600
+++ b/core/src/luan/Luan.java	Tue Apr 19 15:54:11 2016 -0600
@@ -8,7 +8,7 @@
 
 	public static void main(String[] args) throws LuanException {
 		LuanState luan = new LuanState();
-		LuanFunction standalone = (LuanFunction)BasicLuan.load_file(luan,"classpath:luan/cmd_line.luan",null);
+		LuanFunction standalone = (LuanFunction)BasicLuan.load_file(luan,"classpath:luan/cmd_line.luan");
 		standalone.call(luan,args);
 	}