From 6371c933f7e759093949d52983fa3a47b23760a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20N=C3=BCcke?= Date: Sat, 14 Dec 2013 09:14:44 -0800 Subject: [PATCH] Created Tutorials (markdown) --- Tutorials.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Tutorials.md diff --git a/Tutorials.md b/Tutorials.md new file mode 100644 index 0000000..c5d7b70 --- /dev/null +++ b/Tutorials.md @@ -0,0 +1,15 @@ +There are a couple of tutorials that aim to make it easier to get started with mod. They are listed roughly in the order that it makes sense to read them in, since they'll often build upon each other. + +Mod Specific +------------ +1. To begin with, you'll want to [[learn how to build a computer|Tutorial/BasicComputer]] and how to run programs on it. +2. After that you might want to read up on [[how to create new programs|Tutorial/WritingCode]]. +3. To keep you programs across reboots, [[read up on how to label and mount hard drives|Tutorial/HardDrives]]. + +General +------- +If you're new to Lua, one way to learn is to just have a look at [the programs that come with the mod](programs). For basic Lua information, do read the [Lua Reference Manual][lua-manual]. Finally, you may want to read more about [[how you can interact with components from within Lua|ComponentAccess]]. + + +[lua-manual]: http://www.lua.org/manual/5.2/manual.html +[programs]: https://github.com/MightyPirates/OpenComputers/tree/master/assets/opencomputers/lua/rom/bin \ No newline at end of file