summaryrefslogtreecommitdiff
path: root/scripts/main.scm
diff options
context:
space:
mode:
authorHenrique Alves <henrique.alves@itsjungle.xyz>2024-03-30 01:19:33 +0200
committerHenrique Alves <henrique.alves@itsjungle.xyz>2024-03-30 01:19:33 +0200
commitb5e7ed47d48592f3af25d5d16ab7ea12eb275dbf (patch)
treee95e7f91c8f521c9a3a1250f55950256637fbd3c /scripts/main.scm
parent666ce821967301224df09cc0991877c09ce87222 (diff)
downloadgamejam-slgj-2024-b5e7ed47d48592f3af25d5d16ab7ea12eb275dbf.tar.gz
gamejam-slgj-2024-b5e7ed47d48592f3af25d5d16ab7ea12eb275dbf.tar.bz2
gamejam-slgj-2024-b5e7ed47d48592f3af25d5d16ab7ea12eb275dbf.zip
First commit
Diffstat (limited to 'scripts/main.scm')
-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 "))
+ ))