How do I append a single element to a list in Ceylon? I tried the append
method like this, but it only accepts another list:
value list = [1,2].append(3); // Integer is not assignable to 'Nothing[]'
Obviously, I can work around by wrapping the element:
value list = [1,2].append([3]);
But I feel there should be a better way...