Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function onInit()
- {
- local n = null,
- i = 5,
- f = 92.5,
- b_true = true,
- b_false = false,
- s = "строка",
- t = {},
- a = [];
- print("n: " + typeof n);
- print("i: " + typeof i);
- print("f: " + typeof f);
- print("b_true: " + typeof b_true);
- print("b_false: " + typeof b_false);
- print("s: " + typeof s);
- print("t: " + typeof t);
- print("a: " + typeof a);
- }
Add Comment
Please, Sign In to add comment