Skip to content

Commit

Permalink
Merge pull request #21 from PESchoenberg/develop
Browse files Browse the repository at this point in the history
New functions.
  • Loading branch information
PESchoenberg committed Nov 10, 2019
2 parents 88889b0 + 9ec78d5 commit 281a895
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions grsp0.scm
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,9 @@
(let ((str ""))
(let loop ((i 0))
(if (= i p_l)
(begin (newline)
(newline)
(begin (newlines 1)
(display str)
(newline)
(newline))
(newlines 1))
(begin (set! str (string-append str p_c))
(loop (+ i 1)))))))

Expand Down Expand Up @@ -210,7 +208,7 @@
; grsp-test - A simple test function.
;
(define (grsp-test)
(display "grsp-test"))
(grsp-ld "grsp-test"))


; grsp-save-to-file - Saves a string to file p_f.
Expand Down Expand Up @@ -308,7 +306,9 @@
;
(define (grsp-ask p_q)
(let ((res " "))
(newline)
(grsp-ld p_q)
(set! res (read))
res))


0 comments on commit 281a895

Please sign in to comment.