Skip to content

Instantly share code, notes, and snippets.

@jreighley
Created November 10, 2018 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jreighley/103de8202978c279e5e23efbcadfd6e4 to your computer and use it in GitHub Desktop.
Save jreighley/103de8202978c279e5e23efbcadfd6e4 to your computer and use it in GitHub Desktop.
Clojure EBCDIC to String
(defn ebcdic-to-string
"takes an EBCDIC byte array and returns the corresponding string"
[bytearray]
(String. bytearray "cp500"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment