Skip to content

Instantly share code, notes, and snippets.

@MateusAndraste
Created March 24, 2023 16:32
Show Gist options
  • Save MateusAndraste/d43ee18ea4c0fcaac1c0b26e14298ac1 to your computer and use it in GitHub Desktop.
Save MateusAndraste/d43ee18ea4c0fcaac1c0b26e14298ac1 to your computer and use it in GitHub Desktop.
Desafio Programa para Consulta de CPF com Ruby
# source 'https://rubygems.org/gems/cpf_cnpj'
# gem 'cpf_cnpj', '~> 0.5.0'
require 'cpf_cnpj'
print 'Informe seu CPF: '
user_cpf = gets
if CPF.valid?(user_cpf)
puts 'Cpf válido'
else
puts 'Cpf inválido'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment