A templating language that looks like Lisp and compiles to HTML
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617
  1. const readline = require('readline')
  2. async function repl() {
  3. let output
  4. const rl = readline.createInterface({
  5. input: process.stdin,
  6. output: process.stdout,
  7. })
  8. rl.question('hello? ', line => {
  9. console.log(`you said ${line}`)
  10. rl.close()
  11. })
  12. }
  13. repl()