aboutsummaryrefslogtreecommitdiffstats
path: root/bruiser/lua-scripts/asmtest.lua
blob: 83b523a63bbfb5dd0eef861c5dc16d33aa674d5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function test()
  print("running asmtest.lua")
  --for k,v in pairs(jmp_s_t) do print(k,v) end
  local t = jmp_s_t.new()
  print(t)
  t:set_type(3)
  print(t.type)
end

test()