diff web/src/luan/modules/web/web_run.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 5652cdea25f5
children 78a6a71afbfd
line wrap: on
line diff
--- a/web/src/luan/modules/web/web_run.luan	Fri Feb 06 21:54:41 2015 +0000
+++ b/web/src/luan/modules/web/web_run.luan	Sun Feb 08 07:26:20 2015 +0000
@@ -1,6 +1,9 @@
-import "luan:Io"
-import "luan:web/Http"
-import "luan:String"
+local Luan = require "luan:Luan"
+local load = Luan.load
+local Io = require "luan:Io"
+local print = Io.print
+local Http = require "luan:web/Http"
+local String = require "luan:String"
 
 local function lines(s)
 	local matcher = s.gmatch "([^\n]*)\n|([^\n])+$"