Last active
October 17, 2022 12:03
-
-
Save HACKE-RC/790862982c048cee95ee7f64d9842f94 to your computer and use it in GitHub Desktop.
C# code of the .NET assembly used in loader.nim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace CLRHello1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
return; | |
} | |
static int spotlessMethod() | |
{ | |
Console.WriteLine("Hi from CLR"); | |
return 1; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment