summaryrefslogtreecommitdiff
path: root/scripts/main.scm
blob: 779a3518a15c0163dcdd468bcd719fa7b7327779 (plain)
1
2
3
4
5
6
7
8
9
10
11
(define a 0)

(define update
  (lambda ()
    (set! a (+ a 1))
    ))

(define draw
  (lambda ()
    (rl-draw-text (string-append (number->string a) " oi "))
    ))