This commit is contained in:
MaidOpi
2026-05-10 22:29:56 +08:00
commit 0428927f5f
54 changed files with 15200 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Node
func _ready() -> void:
var script := ResourceLoader.load("res://hello.lcs")
if script == null:
push_error("Failed to load LeanCLR hello.lcs")
get_tree().quit(1)
return
print("Loaded LeanCLR script: ", script.get_type_name())
get_tree().quit()