I have found a tutorial how to run Scala on .NET: http://hestia.typepad.com/flatlander/2009/01/getting-started-with-scala-on-net.html

Is it possible to run Scala on Windows Phone? Any hints how to?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Based on the information I can glean from that page, it seems possible but it's going to be some work and the development experience won't be brilliant.

I'd recommend creating a C# WP7 application and creating your views in there.

Next, compile your Scala while referencing the 2.0.5.0 version of mscorlib and the other assemblies.

You should the be able to reference the Scala-compiled assembly from your WP7 application and therefore utilise any domain/view model classes in there.

link|improve this answer
+1 Thx, it is working, however just with Scala 2.7.7. – TN. Jul 8 '11 at 12:23
feedback

The latest how-to on Scala.NET (June 2011) is

http://lamp.epfl.ch/~magarcia/ScalaNET/2011Q2/PreviewScalaNET.pdf

link|improve this answer
Is this working for Scala 2.8.1? – TN. Jul 14 '11 at 14:28
Precompiled versions of the Scala library and the compiler for .NET can be obtained via SVN, in the bin folder of the preview: svn co lampsvn.epfl.ch/svn-repos/scala/scala-experimental/trunk/… – Miguel Garcia Jul 15 '11 at 10:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.