Little break work on grammer, added Object trait to other stdlib objects

This commit is contained in:
Nathan Braswell
2015-06-30 02:40:46 -04:00
parent 91f801d14f
commit 2fcace72ed
7 changed files with 41 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ fun make_pair<T,U>(first: T, second: U): pair<T,U> {
return it
}
obj pair<T,U>(Object) {
obj pair<T,U> (Object) {
var first: T
var second: U