emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] babel scheme not working


From: Lawrence Bottorff
Subject: Re: [O] babel scheme not working
Date: Thu, 28 May 2015 13:49:10 -0400

. . . installed geiser via elpa -- and got some functionality. Although a simple thing like 

#+BEGIN_SRC scheme
(define (mydouble x)
(+ x x))  
  #+END_SRC

doesn't seem to remember from one block to the next. So, after defining the code above

#+BEGIN_SRC scheme
(mydouble 5)
 #+END_SRC

gives an error, while 

 #+BEGIN_SRC scheme
(define (mysquare x)
  (* x x))
(mysquare 5)
 #+END_SRC

  #+RESULTS:
  : 25

works. Any way to have it remember like a REPL does?






reply via email to

[Prev in Thread] Current Thread [Next in Thread]