RosettaCodeData/Task/Interactive-programming-repl-/Ol/interactive-programming-rep...

11 lines
232 B
Plaintext

$ ol
Welcome to Otus Lisp 2.1-2282-27a9b6c
type ',help' to help, ',quit' to end session.
> (define (f head tail mid)
(string-append head mid mid tail))
;; Defined f
> (f "Rosetta" "Code" ":")
"Rosetta::Code"
> ,quit
bye-bye :/