Older versions of ComputerCraft like the one I'm running (1.74) do not support require. That means a lot of code in prism-core and libraries that depend on it rely heavily on os.loadAPI and the global environment, which is not ideal, and results in a lot of hacks to work around the fact that os.loadAPI will happily load the same API multiple times.
Older versions of ComputerCraft like the one I'm running (1.74) do not support
require. That means a lot of code in prism-core and libraries that depend on it rely heavily onos.loadAPIand the global environment, which is not ideal, and results in a lot of hacks to work around the fact thatos.loadAPIwill happily load the same API multiple times.