sc3-rom-dump/rom/programs/fun/hello.lua

10 lines
242 B
Lua
Raw Normal View History

2024-01-15 10:36:50 +01:00
-- SPDX-FileCopyrightText: 2017 Daniel Ratcliffe
--
-- SPDX-License-Identifier: LicenseRef-CCPL
if term.isColour() then
term.setTextColour(2 ^ math.random(0, 15))
end
textutils.slowPrint("Hello World!")
term.setTextColour(colours.white)