|
|
|
|
|
by andrekandre
8 hours ago
|
|
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... |
|