summarylogtreecommitdiffstats
path: root/test_cart.p8
diff options
context:
space:
mode:
Diffstat (limited to 'test_cart.p8')
-rw-r--r--test_cart.p810
1 files changed, 10 insertions, 0 deletions
diff --git a/test_cart.p8 b/test_cart.p8
new file mode 100644
index 000000000000..263413bb0bf2
--- /dev/null
+++ b/test_cart.p8
@@ -0,0 +1,10 @@
+pico-8 cartridge // http://www.pico-8.com
+version 29
+__lua__
+
+color_light_gray = 6
+
+function _draw()
+ cls()
+ print("hello, world!", 0, 0, color_light_gray)
+end