comparison core/src/luan/cmd_line.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 f8ece87df2b1
comparison
equal deleted inserted replaced
320:fed1893821bf 321:7f7708e8fdd4
1 import "luan:Luan" 1 local Luan = require "luan:Luan"
2 import "luan:String"
3 import "luan:Table"
4 import "luan:Io"
5 import "luan:Debug"
6
7 local ipairs = Luan.ipairs 2 local ipairs = Luan.ipairs
8 local load = Luan.load 3 local load = Luan.load
9 local load_file = Luan.load_file 4 local load_file = Luan.load_file
5 require "luan:String" -- for String methods
6 local Table = require "luan:Table"
7 local Io = require "luan:Io"
8 local Debug = require "luan:Debug"
10 9
11 10
12 local standalone_usage = [=[ 11 local standalone_usage = [=[
13 usage: java luan.Luan [options] [script [args]] 12 usage: java luan.Luan [options] [script [args]]
14 Available options are: 13 Available options are: