Difference between revisions of "Tutorials"

From ComputerCraft Wiki
Jump to: navigation, search
m
(Re-arranging page, pending a tutorials overhaul)
Line 1: Line 1:
Look for the [[Getting Started]] guide if this is your first try. As some tutorials might not be listed here, you can also browse the [[:Category:Tutorials|tutorials category]].
+
As some tutorials might not be listed here, you can also browse the [[:Category:Tutorials|tutorials category]].
  
=== Basics ===
+
== Before you begin ==
Common things that may need some explanation.
+
It is recommended that you read these pages before you begin working with ComputerCraft.
 +
*[[Getting Started]]
 
*[[The console and its shell]]
 
*[[The console and its shell]]
  
=== Programming & Wiring ===
+
 
 +
== Basic Tutorials ==
 +
These tutorials are designed to be used in the order shown, each tutorial will build on the previous ones.
 +
=== Introduction to Coding ===
 
*[[Hello_World_Tutorial|Hello World!]]
 
*[[Hello_World_Tutorial|Hello World!]]
 +
 +
 +
== Exemplar Programs ==
 +
These pages guide you through programs created by other users. They are not necessarily well-coded, and might teach bad practices.
 +
=== Programming & Wiring ===
 
*[[Making_a_Delay_function|Making a Delay (timer) function]]
 
*[[Making_a_Delay_function|Making a Delay (timer) function]]
 
*[[Guess_The_Number_(tutorial)|Guess the Number]]
 
*[[Guess_The_Number_(tutorial)|Guess the Number]]
Line 22: Line 31:
 
*[[Cobble_Generator|Cobblestone Generator]]
 
*[[Cobble_Generator|Cobblestone Generator]]
 
*[[Turtle_Stairbuilder_(tutorial)|Turtle Stairbuilder]]
 
*[[Turtle_Stairbuilder_(tutorial)|Turtle Stairbuilder]]
=== External Tutorials/Guides ===
+
== External Tutorials/Guides ==
 
*[http://www.computercraft.info/forums2/index.php?/topic/33-computercraft-v12-very-basic-lua-tutorial/page__view__findpost__p__122 Onionnion's Basic Lua Tutorial]
 
*[http://www.computercraft.info/forums2/index.php?/topic/33-computercraft-v12-very-basic-lua-tutorial/page__view__findpost__p__122 Onionnion's Basic Lua Tutorial]
 
*[http://www.computercraft.info/forums2/index.php?/topic/1516-ospullevent-what-is-it-and-how-is-it-useful/page__view__findpost__p__11156 Onionnion's os.pullEvent() Guide]
 
*[http://www.computercraft.info/forums2/index.php?/topic/1516-ospullevent-what-is-it-and-how-is-it-useful/page__view__findpost__p__11156 Onionnion's os.pullEvent() Guide]
  
 
[[Category:Tutorials]]
 
[[Category:Tutorials]]

Revision as of 14:35, 17 May 2012

As some tutorials might not be listed here, you can also browse the tutorials category.

Before you begin

It is recommended that you read these pages before you begin working with ComputerCraft.


Basic Tutorials

These tutorials are designed to be used in the order shown, each tutorial will build on the previous ones.

Introduction to Coding


Exemplar Programs

These pages guide you through programs created by other users. They are not necessarily well-coded, and might teach bad practices.

Programming & Wiring

Turtles

The nice little robots that do the hard work for you.

External Tutorials/Guides