WurstScript
WurstScript copied to clipboard
Generic tuples
Sort of a precursor of #303 Allow tuples to be generic. Example usage would be iterators that return a key-value pair tuple.
tuple entry<K, V>(K key, V val)
public class MapIterator<K, V>
function next() returns entry<K, V>