While the checkmarks are away, let's play a little game: which programming language is this?
template<class T>
struct Vector {
Box<Elements<T>>* elements;
unsigned length;
}
Conversation
Let's continue. Which language is this?
type entry<copy K, copy V> = {
hash: uint,
key: K,
mutable value: V,
mutable next: chain<K, V>
};
3
1
7
And a final question: which language is this? (need more space)
8
5

