sc3-rom-dump/rom/programs/shutdown.lua

13 lines
239 B
Lua

-- SPDX-FileCopyrightText: 2017 Daniel Ratcliffe
--
-- SPDX-License-Identifier: LicenseRef-CCPL
if term.isColour() then
term.setTextColour(colours.yellow)
end
print("Goodbye")
term.setTextColour(colours.white)
sleep(1)
os.shutdown()