Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist
View gist:1168985
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Containable: interface {
getRawValue: func<T> -> T//Not really used...
}
 
Cell: class<T> implements Containable {
value: T
init: func(=value) {}
}
 
ArrayOfAnything: class extends ArrayList<Containable> {
add: func<T> (element: T) {
super(Cell<T> new(element))
}
//blah blah...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.