This is certainly an impressive piece of work. However, i think it's worth paying attention to the limitations, and the use cases they imply; overall, this looks less like "compile your existing Scala app to native code!" and more like "use Scala to interface with existing native libraries!".<p>On the other hand, it's also worth bearing in mind that this is version 0.1.0; over time, some of these limitations will lift. What i don't know is whether Scala Native will develop into a complete version of Scala which compiles to native code, or evolve into a variant of Scala more tightly adapted to a niche of talking to native libraries.<p>Anyway ...<p>(1) No threading [1]:<p><i>Scala Native doesn’t yet provide libraries for parallel multi-threaded programming and assumes single-threaded execution by default. It’s possible to use C libraries to get access to multi-threading and synchronization primitives but this is not officially supported at the moment.</i><p>So forget about using Akka for now.<p>(2) NullPointerExceptions are replaced with segfaults (hopefully) [1]:<p><i>A number of error conditions which are well-defined on JVM are undefined behavior: Dereferencing null. Division by zero. Stack overflows. Those typically crash application with a segfault on the supported architectures.</i><p>That's not so bad; where Java apps might let nulls flow around and rely on catching NullPointerExceptions to recover from them, Scala apps are much more likely to use Optional consistently.<p>(3) If you do want to talk to a native library, and you need to allocate memory to do it, you're on your own [2]:<p><i>Unlike standard Scala objects that are managed automatically by the underlying runtime system, one has to manage native pointers manually.</i><p><i>Scala Native provides a built-in way to perform stack allocations of unmanaged memory using native.stackalloc function: [...] When using stack allocated memory one has to be careful not to capture this memory beyond the lifetime of the method. Dereferencing stack allocated memory after the method’s execution has completed is undefined behaviour.</i><p><i>Scala Native’s library contains a bindings for a subset of the standard libc functionality. This includes the trio of malloc, realloc and free functions</i><p>Java's traditional JNI is a verbose, slow, pain in the stdout, but it was designed pretty carefully to avoid problems like this.<p>(a) Intermission! Check out how they do type-level numbers [1]:<p><i>Natural numbers are types that are composed of base naturals Nat._0, ... Nat._9 and an additional Nat.Digit constructor.</i><p>That's a new one on me!<p>(4) Incomplete JDK libraries [3]:<p><i>Scala Native supports a subset of the JDK core libraries reimplemented in Scala. Here is the list of currently available classes: [...] This is an ongoing effort, some of the classes listed here might be partially implemented.</i><p>The list has most of the fundamental stuff - a good chunk of java.io and NIO, the collections, java.lang, atomics. But no java.text, java.net, concurrency, regexp, date and time, JDBC, reflection, XML, etc.<p>They don't mention how much of the Scala libraries they support. I would imagine that they can build anything that's in pure Scala and depends only on JDK classes in that list, so you'll get the core language stuff and the collections. Not sure.<p>[1] <a href="http://www.scala-native.org/en/latest/user/lang.html" rel="nofollow">http://www.scala-native.org/en/latest/user/lang.html</a><p>[2] <a href="http://www.scala-native.org/en/latest/user/interop.html" rel="nofollow">http://www.scala-native.org/en/latest/user/interop.html</a><p>[3] <a href="http://www.scala-native.org/en/latest/lib/javalib.html" rel="nofollow">http://www.scala-native.org/en/latest/lib/javalib.html</a>