Comment by awesome_dude
Comment by awesome_dude 14 hours ago
You could make a better argument for Go (compiles to native for multiple targets, zero actual dependencies (no need for a platform or virtual machine on the target)
Comment by awesome_dude 14 hours ago
You could make a better argument for Go (compiles to native for multiple targets, zero actual dependencies (no need for a platform or virtual machine on the target)
C# no longer requires .net installed or bundled inside exe.
Like I’ve said: NativeAOT
https://learn.microsoft.com/en-us/dotnet/core/deploying/nati...
Go is the most portable compiled language out there and makes a lot of compromises with the interpreted lang world. But it's got its own issues.
>zero actual dependencies
on Linux only with CGO_ENABLED=0 and good luck using some non web related 3rd party module which can be used with CGO disabled.
C# has AOT compilation producing native, single file assemblies. A bit behind on this compared to Go, but it's there.