Search results

  1. F

    lexical idea "." and "_"

    in a word, swap "." and "_" (except that in number literal, and 11l keyword), consider "." valid in identifiers and "_" becomes a binop. (this idea is general to languages, but works even better on 11l) that has several pros: member access and number literal never collides. 1.5_toString() needs...
  2. F

    some idea about string

    about string concatenation: restrict to string interpolation, simply no "concatenation operator"? '{a}{b}', 'a = {a}' it also implies all elements are to be converted to string. some further nitpick on "commutativity": floating point arithmetic is noncommutative either because of how it...
Top