Files
godot-tests/tests/project_export/script.gd
Hugo Locurcio ebd6d4f8d6 Add a minimal test project
This project is used in Godot to test command line project exporting
and script running.
2019-08-08 15:36:21 +02:00

6 lines
106 B
GDScript

extends SceneTree
func _init() -> void:
print("Test project: The script was run successfully.")
quit()