Héllo Jamil, 2014-12-14 12:58 GMT+01:00 jamil egdemir <uncleja...@gmail.com>: > > Hi Everyone, > > Is there an analog of the following (from Python) in Guile? > > In [4]: "++GLUE++".join(['this', 'is', 'a', 'test']) > Out[4]: 'this++GLUE++is++GLUE++a++GLUE++test' > > Or perhaps a better question to ask: What is the > canonical way to do the same thing in Guile?
I use extensively the guile manual that you can find at https://www.gnu.org/software/guile/manual/ (pdf or single page, or work best). I don't know better way. A lot of procedures start with the name of the type they are applied to (if not all the time): string-drop, string-take, list-head, list-tail, bytevector-ref bytevector-set!... The pdf and ascii version have a procedure index at the end.