Hi - I’m new to replit and am tyring to get Scheme code to run. I must be missing something, because when I run a few simple commands:
(print "What's your name?")
(print "Hello, " (read) "!")
I get following output in the console:
guile --no-auto-compile -l .init.scm -l main.scm
Backtrace:
3 (primitive-load "/home/runner/Test-Scheme/main.scm")
In ice-9/eval.scm:
191:27 2 (_ #f)
223:20 1 (proc #<directory (guile-user) 7f89296f9c80>)
In unknown file:
0 (%resolve-variable (7 . print) #<directory (guile-user)…>)
ERROR: In procedure %resolve-variable:
Unbound variable: print
exit status 1
Any ideas on how to resolve this?
Thanks!