In C# you can write:
var alphaTask = Task.Factory.StartNew<alpha>(() =>
{
return someWork(n);<br>
});
// ... do some other work, and later get the result from the task<br>
var res = alphaTask.Result;
How would this simple construction look like in Scala?
Thank you.