Style patches
This commit is contained in:
parent
c9279ab0e7
commit
b9ba05be81
23 changed files with 90 additions and 90 deletions
|
|
@ -7,16 +7,16 @@ local env = _ENV -- Lua 5.2
|
|||
if not env then env = getfenv () end -- Lua 5.1
|
||||
setmetatable(env, {__index=function (t,i) error("undefined global variable `"..i.."'",2) end})
|
||||
|
||||
assert( oc.foo(1,1,"test",1) == 15 )
|
||||
assert(oc.foo(1,1,"test",1) == 15)
|
||||
|
||||
p1 = oc.Pop(nil)
|
||||
p1 = oc.Pop(nil,false)
|
||||
|
||||
assert( p1:hip(true) == 701 )
|
||||
assert( p1:hip(nil) == 702 )
|
||||
assert(p1:hip(true) == 701)
|
||||
assert(p1:hip(nil) == 702)
|
||||
|
||||
assert( p1:hop(true) == 801 )
|
||||
assert( p1:hop(nil) == 805 )
|
||||
assert(p1:hop(true) == 801)
|
||||
assert(p1:hop(nil) == 805)
|
||||
|
||||
assert( oc.muzak(true) == 3001 )
|
||||
assert( oc.muzak(nil) == 3002 )
|
||||
assert(oc.muzak(true) == 3001)
|
||||
assert(oc.muzak(nil) == 3002)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue