Skip to content

Instantly share code, notes, and snippets.

@HACKE-RC
Last active October 17, 2022 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HACKE-RC/790862982c048cee95ee7f64d9842f94 to your computer and use it in GitHub Desktop.
Save HACKE-RC/790862982c048cee95ee7f64d9842f94 to your computer and use it in GitHub Desktop.
C# code of the .NET assembly used in loader.nim
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