PageRenderTime 45ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/trunk/Examples/lua/constants/runme.lua

#
Lua | 35 lines | 27 code | 3 blank | 5 comment | 2 complexity | 54e2b21330c54fb534dba1a74785489b MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. -- file: example.lua
  2. ---- importing ----
  3. if string.sub(_VERSION,1,7)=='Lua 5.0' then
  4. -- lua5.0 doesnt have a nice way to do this
  5. lib=loadlib('example.dll','luaopen_example') or loadlib('example.so','luaopen_example')
  6. assert(lib)()
  7. else
  8. -- lua 5.1 does
  9. require('example')
  10. end
  11. print("ICONST = "..example.ICONST.." (should be 42)")
  12. print("FCONST = "..example.FCONST.." (should be 2.1828)")
  13. print("CCONST = "..example.CCONST.." (should be 'x')")
  14. print("CCONST2 = "..example.CCONST2.." (this should be on a new line)")
  15. print("SCONST = "..example.SCONST.." (should be 'Hello World')")
  16. print("SCONST2 = "..example.SCONST2.." (should be '\"Hello World\"')")
  17. print("EXPR = "..example.EXPR.." (should be 48.5484)")
  18. print("iconst = "..example.iconst.." (should be 37)")
  19. print("fconst = "..example.fconst.." (should be 3.14)")
  20. -- helper to check that a fn failed
  21. function checkfail(fn)
  22. if pcall(fn)==true then
  23. print("that shouldn't happen, it worked")
  24. else
  25. print("function failed as expected")
  26. end
  27. end
  28. -- these should fail
  29. -- example.EXTERN is a nil value, so concatentatin will make it fail
  30. checkfail(function() print("EXTERN = "..example.EXTERN) end)
  31. checkfail(function() print("FOO = "..example.FOO) end)