github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/stdlib/base/testdata/type.lua (about)

     1  assert(type(nil) == "nil")
     2  assert(type(5) == "number")
     3  assert(type("hello") == "string")
     4  assert(type(false) == "boolean")
     5  assert(type({1, 2, 3}) == "table")
     6  assert(type(print) == "function")