PasteRack.org
Paste # 55271
2017-10-09 12:46:28

Fork as a new paste.

Paste viewed 232 times.


Embed:

just

#lang racket/base

(require racket/string
         racket/stream)

(for/list ([l (in-lines (open-input-file "/tmp/bible.txt"))])
  (string-split l))