You cannot post messages because only members can post, and you are not currently a member.
Description:
Vodka is an experimental programming language with a focus on creating concurrent, interactive systems. As such, Vodka provides rich concurrency primitives at the language level and a runtime system that is geared towards execution on multiprocessor hardware.
|
|
|
Bit operations
|
| |
Is there support, or can it be added, for left shift, right shift, or, and, xor for manipulating bits in a number? Chris.
|
|
Lists, Arrays. etc
|
| |
What are the options for dynamic collections like lists and arrays in Vodka? Should I use the Java collections stuff? For example, I have a result set returned from a JDBC query. I'm processing the result set like this (rs is the JDBC ResultSet): def result(rs): { new gen; def gen(yield): { if rs->next():... more »
|
|
Static members of Java classes
|
| |
How do you call static methods of Java classes. Accessing JDBC for example: import native java.sql.DriverManager; How do I call DriverManager.getConnection? Chris.
|
|
swing1 example
|
| |
The 'swing1' example fails due to not knowing about 'Console'. Adding 'import library.console;' to it makes it work. It runs fine with this change. If I enter it line by line at the interactive prompt it gets very slow responses between lines though. By the time I've run the native import statements, even do something... more »
|
|
Types
|
| |
I notice the examples in the thesis have types attached to functions: new fac: Int --> Int; This doesn't seemed to be accepted by the current implementation. But this works: new fac; Is this something planned or is there a way to enable it? Chris.
|
|
Vodka
|
| |
Hi Tiark Nice language you got there :) I saw the ANN over at lambda. I was interested in Nice a while back...before it seemed to be abandoned, so I definitely had to take a closer look at Vodka. The concurrency model and multi-methods are very interesting. Is it still in development? Too bad that it doesn't run on the CLR ;)... more »
|
|
Opening the vodka-discuss group
|
| |
Hello all, I've set up this group as a platform for discussion and information about the Vodka programming language. Please feel free to post your questions, comments, suggestions, opinions, ... - Tiark
By tiark.ro...@googlemail.com -
May 7 2007
-
1 message
|
No more topics in this group.
|
|