summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/main.scm11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/main.scm b/scripts/main.scm
new file mode 100644
index 0000000..779a351
--- /dev/null
+++ b/scripts/main.scm
@@ -0,0 +1,11 @@
+(define a 0)
+
+(define update
+ (lambda ()
+ (set! a (+ a 1))
+ ))
+
+(define draw
+ (lambda ()
+ (rl-draw-text (string-append (number->string a) " oi "))
+ ))