Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

I've got it working now, but i'm noticing that the "display" function isn't available, is there a way to log to the console for debugging purposes? apologies if i'm missing something simple, i only have prior experience using racket, not guile.

In R7RS-small, the `display` procedure is in the (scheme write) module. I recommend keeping the R7RS-small spec handy for reference. That's what I do. :) https://small.r7rs.org/

(+1)

thanks!

Also, you may find yourself needing to manually flush output ports via (flush-output-port (current-output-port)) so if you don't see the expected output try that!