Skip to content

Instantly share code, notes, and snippets.

@sriki77
Created November 13, 2011 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sriki77/1362038 to your computer and use it in GitHub Desktop.
Save sriki77/1362038 to your computer and use it in GitHub Desktop.
Io Day 1
#!/usr/bin/env io
Vehicle := Object clone
Vehicle desc := "Moving Object"
Car := Vehicle clone
Car drive := method ("Vrooom..." println)
ferrari := Car clone
Car drive
Car slotNames println
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment