I have spent the day adding a Pike column to some more language comparisions on the net, and thought it wise to save some info on where Pike failed:
Python and Perl has a three way (</=/>) comparision function "cmp". Should Pike have one, and where?
Pliant has a four way (</=/>/not comparable) comparision function "compare". Should Pike that instead or at all?
Should we make an eval function like most other languages. mixed eval(string x) { return compile_string("mixed foo(){ "+x+";}")()->foo(); }
Should we have an identity function for the fun of it (Haskell has id and Smalltalk has yourself)?
Should upper_case and lower_case be able to operate on integers (chars)?
Should we add Array.shift and Array.pop to remove elements in either end of the Array?
Should we add Array.zip and Array.unzip to merge and split arrays.
Should we add Array.partition that splits an array into two (like filter with two outputs)?
Should we add Array.exists/any to determine if at least one element satisfies a criterion and Array.every/all to determine if the all are?
Should we add the possibility to define default values for types, e.g. typedef int myint = 7;
Do we need a Math.divmod?
Questions, questions...