Skip to content

Commit

Permalink
Merge pull request #5 from PESchoenberg/develop
Browse files Browse the repository at this point in the history
Expanded comments on functions.
  • Loading branch information
PESchoenberg authored Feb 19, 2019
2 parents c669a02 + 163b969 commit ff89ddc
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions grsp0.scm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
;
; grsp0.scm
;
; Some useful functions for GNU Guile Scheme programs.
; Some useful, simple functions for GNU Guile Scheme programs created or
; adapted during the development of several other projects.
;
; ==============================================================================
;
Expand All @@ -25,7 +26,6 @@


(define-module (grsp grsp0)
;#:use-module ()
#:export (pline
ptit
newlines
Expand Down Expand Up @@ -118,7 +118,9 @@
res))


; strings-append - appends strings entered in a list as one larger string.
; strings-append - appends strings entered in a list as one larger string. Use
; it to avoid complex, nested calls to string-append when you have to join
; several strings into one.
;
; Arguments:
; - p_l: list of strings.
Expand All @@ -141,7 +143,8 @@

; read-file-as-string - reads a file as a string; adapted from an example
; from sources indicated below. The string will be formatted and include
; characters such as \n and \r.
; characters such as \n and \r. What this does in practice is to read a
; file and return it as one single string.
;
; Arguments:
; - p_f: file name.
Expand Down

0 comments on commit ff89ddc

Please sign in to comment.