Skip to content

Instantly share code, notes, and snippets.

@dom96

dom96/foo.nim Secret

Created April 28, 2018 22:19
Show Gist options
  • Save dom96/406341ad69ac8954fd7be81d87679cfb to your computer and use it in GitHub Desktop.
Save dom96/406341ad69ac8954fd7be81d87679cfb to your computer and use it in GitHub Desktop.
var res = xmlseq.map(
proc (item: XMLNode): any =
item
.child("itunes:duration")
.innerText
.split(":")
.map(parseInt)
.reversed
.concat(@[0,0])
).map(...)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment