Change to onedev

This commit is contained in:
2025-01-08 12:27:52 -06:00
parent df895846dc
commit fa4f24f74e
47 changed files with 635 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
bin
obj

16
Templates/lib/cross.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "Tesses.CrossLang.Template.Library",
"version": "1.0.0.0-prod",
"info": {
"maintainer": "Mike Nolan",
"type": "template",
"repo": "https://onedev.site.tesses.net/CrossLang/CrossLangExtras",
"homepage": "https://crosslang.tesseslanguage.com/",
"license": "MIT",
"template_name": "lib",
"template_info": {
"type": "lib"
},
"template_ignored_files": ["bin","obj"]
}
}

View File

@@ -0,0 +1,5 @@
/^ Multiply two numbers ^/
func MyLib.Times(a,b)
{
return a * b;
}