Guest User

Untitled

a guest
Mar 5th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. function onInit()
  2. {
  3.     local   n = null,
  4.             i = 5,
  5.             f = 92.5,
  6.             b_true = true,
  7.             b_false = false,
  8.             s = "строка",
  9.             t = {},
  10.             a = [];
  11.  
  12.     print("n: "         + typeof n);
  13.     print("i: "         + typeof i);
  14.     print("f: "         + typeof f);
  15.     print("b_true: "    + typeof b_true);
  16.     print("b_false: "   + typeof b_false);
  17.     print("s: "         + typeof s);
  18.     print("t: "         + typeof t);
  19.     print("a: "         + typeof a);
  20. }
Add Comment
Please, Sign In to add comment