1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-06-24 22:23:21 +00:00
CC-Tweaked/src/main/resources/data/computercraft/lua/rom/programs/fun/hello.lua
SquidDev d847a4d9e0 Merge branch 'master' into mc-1.14.x
This also deletes display list support - MC 1.14 now requires VBOs to be
supported in some capacity.
2020-04-22 09:45:23 +01:00

6 lines
145 B
Lua

if term.isColour() then
term.setTextColour(2 ^ math.random(0, 15))
end
textutils.slowPrint("Hello World!")
term.setTextColour(colours.white)