logoalt Hacker News

andrekandretoday at 1:56 AM0 repliesview on HN

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