fork(3) download
  1. ; non-breaking hyphen
  2.  
  3. (define s (string-append "1000136650" (string #\x7db) "1"))
  4.  
  5. (display s) (newline)
  6.  
  7. (define (asciistr s)
  8. (map char->integer (string->list s)))
  9.  
  10. (display (asciistr s)) (newline)
Success #stdin #stdout 0.01s 7924KB
stdin
Standard input is empty
stdout
1000136650�1
(49 48 48 48 49 51 54 54 53 48 219 49)