Skip to content

Instantly share code, notes, and snippets.

@wandernauta
Created June 12, 2010 15:16
Show Gist options
  • Save wandernauta/435802 to your computer and use it in GitHub Desktop.
Save wandernauta/435802 to your computer and use it in GitHub Desktop.
// Example (test?) code for try.ooc's reference PHP implementation
import os/Terminal
str := "RAINBOW FEVER"
Terminal setAttr(Attr bright)
rb: func() {
for (c in 0..str length()) {
Terminal setFgColor((c/2)+31)
str[c] print()
}
println()
}
for (i in 0..10) {rb()}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment