What will Support for Dynamic Languages in Java 7 be like?
Posted
by PythonPower
on Stack Overflow
See other posts from Stack Overflow
or by PythonPower
Published on 2010-01-06T23:42:25Z
Indexed on
2010/04/08
14:53 UTC
Read the original article
Hit count: 401
It seems JSR 292 will add support for dynamic languages to the JVM but I've not seen many details about it. Will dynamic types be incorporated into the language (or just the VM)? If so, what will the semantics look like?
Will there be something like C# 4's:
dynamic x = 10, y = 5;
Console.WriteLine(x + y);
© Stack Overflow or respective owner