Hi,
The next release of V is available here
http://v-language.googlecode.com/files/v_0.002.tar.gz
Updates:
more combinators are in place,
an error handling mechanism is available using throw and shield,
a stack shuffling word is avalable that allows
1 2 3 [a b c : [c b] a] V => [3 2] 1
[1 2 3] [[a *rest] : *rest [a]] V => 2 3 [1]
[1 2 [3 4]] [[*start [tail1 tail2]] : *start [tail2]] V => 1 2 [4]
etc.
More information including examples for both is available here.
http://code.google.com/p/v-language/wiki/Status
I have not yet managed to add the FFI to java as I could not
settle on a good way to represent the calls to java objects.
rahul