WikiSandbox

Cool!

SUPER

This is the sandbox

This is a Sample Heading

This is a Sample Heading

This is a Sample Heading

This is a Sample Heading

Here is some code...

// initialise array z to a...
sub InitArray(byref pArray() as byte)
   dim index as byte
   dim ASCII as byte  
   ASCII = 65 + bound(pArray)
   for index = 0 to bound(pArray)
      pArray(index) = ASCII
      dec(ASCII)
   next
end sub

USART.Write("Hello World! From the Wiki sandbox.",$0D)