Skip to content

Instantly share code, notes, and snippets.

@bovine
Created February 6, 2012 05:29
Show Gist options
  • Save bovine/1749935 to your computer and use it in GitHub Desktop.
Save bovine/1749935 to your computer and use it in GitHub Desktop.
#!/usr/bin/tclsh8.5
package require speedtable
speedtables Animinfo 1.1 {
table animation_characters {
varstring name indexed 1 unique 0
varstring home
varstring show indexed 1 unique 0
varstring dad
boolean alive default 1
varstring gender default male
int age
int coolness
}
}
package require Animinfo
animation_characters create t
t set shake name "Master Shake" show "Aqua Teen Hunger Force"
t set shake age 4 coolness -5
puts [t get shake]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment