Difference between revisions of "Routines"

From WikiTI
Jump to: navigation, search
(recommendation about wiki syntax)
(sed hint)
Line 1: Line 1:
 
This is the index of the different routines pages of this wiki.
 
This is the index of the different routines pages of this wiki.
When you paste code, remember to insert a space character at the beginning of each line in order to let it be displayed in a fixed-width font, and without needing to insert special characters in order to have line breaks.
 
  
 
----
 
----
 +
 
* [[Routines:Graphic|Graphic routines]]
 
* [[Routines:Graphic|Graphic routines]]
 
* [[Routines:Sound|Sound routines]]
 
* [[Routines:Sound|Sound routines]]
 
* [[Routines:Input|Input routines]]
 
* [[Routines:Input|Input routines]]
 
* [[Routines:Other|Other routines]]
 
* [[Routines:Other|Other routines]]
 +
 +
----
 +
 +
When you paste code, remember to insert a space character at the beginning of each line in order to let it be displayed in a fixed-width font, and without needing to insert special characters in order to have line breaks.
 +
 +
If you're using an Unix-like system, open a terminal and type :
 +
sed s/^/" "/  routine.z80  > wikiroutine.z80
 +
to insert a space at the beginning of your routine's lines.

Revision as of 08:50, 27 March 2005

This is the index of the different routines pages of this wiki.



When you paste code, remember to insert a space character at the beginning of each line in order to let it be displayed in a fixed-width font, and without needing to insert special characters in order to have line breaks.

If you're using an Unix-like system, open a terminal and type :

sed s/^/" "/  routine.z80  > wikiroutine.z80

to insert a space at the beginning of your routine's lines.