Implemented basic .NET assembly execution using winim/clr.

This commit is contained in:
Jakob Friedl
2025-09-12 15:06:28 +02:00
parent f0010694eb
commit 9b94a06ce9
3 changed files with 58 additions and 3 deletions

View File

@@ -68,5 +68,11 @@ proc main() =
except CatchableError as err:
echo "[-] ", err.msg
import core/clr
when isMainModule:
test()
quit(0)
main()