diff options
author | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-04-25 14:20:17 +0300 |
---|---|---|
committer | Henrique Alves <henrique.alves@itsjungle.xyz> | 2024-04-25 14:20:17 +0300 |
commit | 97168aaf30c64c688e0057f28f1f2375b4c40520 (patch) | |
tree | 9f48d9caace322a99e47600a717725079334403a /scripts | |
parent | 3febad74e46d3485f079108b2d30bcde1f6ce58b (diff) | |
download | gamejam-slgj-2024-97168aaf30c64c688e0057f28f1f2375b4c40520.tar.gz gamejam-slgj-2024-97168aaf30c64c688e0057f28f1f2375b4c40520.tar.bz2 gamejam-slgj-2024-97168aaf30c64c688e0057f28f1f2375b4c40520.zip |
Fix basic counting on web
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/main.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/scripts/main.scm b/scripts/main.scm index 136c757..9066381 100644 --- a/scripts/main.scm +++ b/scripts/main.scm @@ -1,13 +1,12 @@ (define a 0) -(define b 0) +;;(define b 0) (define update (lambda () (set! a (+ a 1)) - (set! b (rl-load-texture)) - (display b) - (newline) - (gc-run) + ;;(set! b (rl-load-texture)) + ;;(display b) + )) (define draw |