I\'ve heard that most lisps suppor开发者_Python百科t saving image of running program into file. Does guilesupport this?I think that interoperating with other languages is pretty integral to what Guile
In DrRacket IDE开发者_如何学Python, I was able to get the system date in the following manner when the language setting was \'Swindle\':
How do write a sorting algorithm that returns a list into increasing order. ex: \'(1 3 5 2 9) returns \'(1 2 3 5 9)开发者_高级运维Most Scheme implementations come with a procedure to sort lists. If y
I followed this tutorial and successfully installed Emacs, STk, Quack. The question is how can I load my program like I do in Racket?
Is there a possibility to use mit scheme as a simple compiler (without runing Edwin) in Windows? I want to edit code in w开发者_StackOverflow社区ditor of my choice and compile it, but I haven\'t foun
Currently learning Scheme/Racket and have problem running this piece of code. (if (or (< aftnHour 0) (> aftnHour 6))
I am trying to get a random string from a list of strings in scheme. Example List 开发者_运维技巧( \"this\" \"that\" \"today\" \"yesterday\")
I\'m experimenting with Gambit scheme and I have problem! My OS is Windows 7. When I try to interpret script I do:
I have a Scheme function who\'s basic form looks like this (define (foo param var) (cond ((end-condition) (return-something))
I\'m a Scheme newbie and trying to make sense of my homework. I\'ve a function I made earlier called duplicate, and it looks like this: