Skip to content

Instantly share code, notes, and snippets.

View krchandanvk's full-sized avatar

Chandan Kumar krchandanvk

  • @techyrecruit
  • Bangalore
  • 13:11 (UTC +05:30)
View GitHub Profile
@rkhapov
rkhapov / calc.js
Created December 14, 2017 17:03
calculator
main().then(code => process.exit(code));
function create_reader()
{
const readline = require('readline');
return readline.createInterface({
input: process.stdin,
output: process.stdout
});