First commit

This commit is contained in:
2025-11-17 13:34:43 -06:00
commit bde690c9cb
36 changed files with 1363 additions and 0 deletions

16
6 CPKG/myapp/cross.json Normal file
View File

@@ -0,0 +1,16 @@
{
"dependencies": [
{
"name": "mylibrary",
"version": "1.0.0.0-prod"
}
],
"info": {
"description": "An app that prints 42",
"short_name": "myapp",
"short_name_pretty": "My Dumb App",
"type": "console"
},
"name": "myapp",
"version": "1.0.0.0-prod"
}

View File

@@ -0,0 +1,4 @@
func main(args)
{
Console.WriteLine(MyLib.Times(6,7));
}