What are the use cases? I am curious why Rust was not targeted.
I first thought you were going to ask about the usecases for the austrian fut lol
51–53 of 53 posts
What are the use cases? I am curious why Rust was not targeted.
public class HelloFu
{
public static string GetMessage()
{
return "Hello, world!";
}
}
translated into swift this gives a class, which means i'm dealing with reference semantics (and potentially threading
issues) and probably not something i necessarily want... i tried struct, but there is no struct keyword in fusion it seems...It seems similar in concept to Haxe, but focused on writing libraries which are then called from the target language, rather than building your whole application in Fusion. Is that correct? How are exceptions translated to languages which don't have exceptions, like C? The amount of targets seems impressive, but I don't see anything resembling a standard library. Usually, it's in the standard library where diverging…
https://github.com/fusionlanguage/fut/blob/master/doc/refere...