elena-lang
elena-lang copied to clipboard
Multi-value return
The language should support multi-value return, Tuple<T1,...> template should be used. Something like this
singleton Helper
{
(int, string) getPair()
= (1, "abc");
}