1
0
mirror of https://github.com/minetest/minetest.git synced 2024-06-29 15:10:17 +02:00
minetest/games/minimal/mods/test/init.lua
2012-03-28 00:38:20 +03:00

12 lines
162 B
Lua

--
-- Minimal Development Test
-- Mod: test
--
-- Try out PseudoRandom
pseudo = PseudoRandom(13)
assert(pseudo:next() == 22290)
assert(pseudo:next() == 13854)