comparison src/luan/cmd_line.luan @ 1436:65d4afc9ad07

cache fix
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 06 Jan 2020 18:17:46 -0700
parents 8d95711f6615
children 219f2b937f2b
comparison
equal deleted inserted replaced
1435:3aae37efbf40 1436:65d4afc9ad07
6 local Table = require "luan:Table.luan" 6 local Table = require "luan:Table.luan"
7 local pack = Table.pack or error() 7 local pack = Table.pack or error()
8 local unpack = Table.unpack or error() 8 local unpack = Table.unpack or error()
9 local Io = require "luan:Io.luan" 9 local Io = require "luan:Io.luan"
10 local print = Io.print or error() 10 local print = Io.print or error()
11 local Logging = require "luan:logging/Logging.luan"
11 12
12 13
13 local args = {...} 14 local args = {...}
14 if #args == 0 then 15 if #args == 0 then
15 print("Luan "..Luan.VERSION) 16 print("Luan "..Luan.VERSION)