first commit

This commit is contained in:
2026-06-21 21:05:24 -05:00
commit 973db5f00a
9 changed files with 559 additions and 0 deletions

5
Tesses.CrossLisp.Example/.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
.DS_Store
bin
obj
publish
thumbs.db

View File

@@ -0,0 +1,15 @@
{
"$schema": "https:\/\/crosslang.tesseslanguage.com\/\/schema\/cross-json-schema.json",
"info": {
"description": "Change Me",
"short_name": "changeme",
"short_name_pretty": "Change Me",
"type": "console"
},
"name": "Tesses.CrossLisp.Example",
"project_dependencies": [
"..\/Tesses.CrossLisp.CompileTool",
"..\/Tesses.CrossLisp.Runtime"
],
"version": "1.0.0.0-prod"
}

View File

@@ -0,0 +1,9 @@
(defun print(text)
"Print To Console"
(call Console "WriteLine" text)
)
(defun main(args)
"My Main Function"
(print (* 6 7))
1
)