Guest User

Untitled

a guest
Jan 23rd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5.  
  6. "github.com/Nhanderu/brdoc"
  7. )
  8.  
  9. var (
  10. cpfs = []string{
  11. "01173329412",
  12. "02545230309"}
  13. )
  14.  
  15. func main() {
  16. for _, cpf := range cpfs {
  17. if brdoc.IsCPF(cpf) {
  18. fmt.Println(cpf)
  19. }
  20. }
  21. }
Add Comment
Please, Sign In to add comment