Basically, the language has 3 list and 3 fixed-length types, one of them is string. This is simple to detect the type of a token using regular expressions, but splitting them into tokens is not that trivial.
String is notated with double-quote, and double-qoute is escaped with backslash.
EDIT:
Some example code
{
print (sum (1 2 3 4))
if [( 2 + 3 ) < 6] : {print ("Smaller")}
}
Lists like
- () are argument lists that are only evaluated when necessary.
- [] are special list to express 2 operand operations in a prettier way.
- {} are lists that are always evaluated. First element is a function name, second is a list of arguments, and this repeats.
- anything : anything [ : anything [: ...]] translate to argument lists that have the elements joined by the :s. This is only for making loops and conditionals look better.
All functions take a single argument. Argument lists can be used for functions that need more. You can fore and argument list to evaluate using different types of eval functions. (There would be eval functions for each list model)
So, if you understand this, this works very similar like Lisp does, it's only has different list types for prettifying the code.
EDIT: @rici
[[2 + 3] < 6] is OK too. As I mentioned, argument lists are evaluated only when it's necessary. Since < is a function that requires an argument list of length 2, (2 + 3) must be evaluated somehow, other ways it [(2 + 3) < 6] would translate to < (2 + 3) : 6 which equals to < (2 + 3 6) which is and invalid argument list for <. But I see you point, it's not trivial that how automatic parsing in this case should work. The version that I described above, is that the [...] evaluates arguments list with a function like eval_as_oplist (...) But I guess you are right, because this way, you couldn't use an argument list in the regular way inside a [...] which is problematic even if you don't have a reason to do so, because it doesn't lead to a better code. So [[. . .] . .] is a better code, I agree.
[[ 2 + 3 ] < 6 ]? If not, I don't understand the syntax of[...]– rici Dec 3 '12 at 3:35{print ("Smaller")}and not just{print "Smaller"}? Or, alternatively, why isn't it{print ((sum (1 2 3 4)))...? (IOW, is this really an improvement over just having a single way of spelling(? :) ) – rici Dec 3 '12 at 4:00