cbf25999f0
COMING IN THE FULL RELEASE: - A user system - A functional IPC (Inter-Process Communication) system THINGS CAN AND WILL CHANGE FROM NOW UNTIL THE FINAL RELEASE.
9 lines
220 B
Lua
9 lines
220 B
Lua
local computer = require("computer")
|
|
|
|
if type(computer)~="table" then
|
|
return print("\x1b[91mComputer library returned '"..type(computer).."' type\x1b[39m")
|
|
end
|
|
|
|
local address = computer.getBootAddress()
|
|
print(address)
|