blob: 91d6465b7554895c914851c58bc4b4a04faad432 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
-- bitsOS: An operating system for ComputerCraft. Licensed with GPL-3.0.
local version = "1.0 Alpha 1"
term.clear()
term.setCursorPos(1,1)
print("Starting up bitsOS ".. version .."...")
sleep(3)
|