fork(2) download
  1. ; memfrob
  2.  
  3. (define (memfrob str)
  4. (define (frob c)
  5. (integer->char (bitwise-xor (char->integer c) 42)))
  6. (list->string (map frob (string->list str))))
  7.  
  8. (display (memfrob (memfrob "Programming Praxis"))) (newline)
Success #stdin #stdout 0.01s 7816KB
stdin
Standard input is empty
stdout
Programming Praxis