Skip to content

Instantly share code, notes, and snippets.

@flaviut
Created July 28, 2014 12:59
Show Gist options
  • Save flaviut/fba6df9cb02bf10278d6 to your computer and use it in GitHub Desktop.
Save flaviut/fba6df9cb02bf10278d6 to your computer and use it in GitHub Desktop.
proc isSeq[T](v: seq[T]): bool =
return true
proc isSeq[T](v: T): bool =
return false
let foo = @[1, 2]
let fo1 = "ad"
echo fo1.isSeq
echo foo.isSeq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment