about summary refs log tree commit diff
path: root/dump.fnl
blob: 402424767f4e70ee489487761f0726a6bc192b1b (plain)
1
2
3
4
5
6
;; dumps standard input as list of codepoints

(local x (io.read))

(each [_ v (utf8.codes x)]
  (print (string.format "%08x" v)))