Live data from Hacker News

Fusion Programming Language

fusion-lang.org

51–53 of 53 posts

Re: Fusion Programming Language

#52
from the example:

  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...

Re: Fusion Programming Language

#53
post #50

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...

Thanks for the link. Seems like it isn't ready for general usage yet.
Post reply on HN