Skip to content

Instantly share code, notes, and snippets.

@sergiopvilar
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergiopvilar/9374433 to your computer and use it in GitHub Desktop.
Save sergiopvilar/9374433 to your computer and use it in GitHub Desktop.
// Funções utilitárias
var readline = require('readline');
function ler(pergunta, callback){
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question(pergunta, function(answer) {
if(callback){
callback(answer);
}
rl.close();
});
}
function escrever(mensagem){
console.log(mensagem);
}
var Questao = function(){
// Só altere daqui pra baixo
ler("Qual é o seu nome?'", function(resposta){
escrever(resposta);
});
}
new Questao();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment