Rename samples subdirectories

This commit is contained in:
Joshua Peek
2012-07-23 15:52:49 -05:00
parent 314f0e4852
commit 7b6caa0f6c
273 changed files with 2952 additions and 2955 deletions

9
samples/Gosu/Hello.gsx Normal file
View File

@@ -0,0 +1,9 @@
package example
enhancement Hello : String {
function toPerson() : Person {
var vals = this.split(",")
return new Person( vals[0], vals[1] as int, Relationship.valueOf( vals[2] ) ) )
}
}