UNPKG

184 BJavaScriptView Raw
1var adventure = require('adventure');
2var adv = adventure('robots');
3
4adv.add('beep boop', function () {
5 return require('./beep_boop.js');
6});
7
8adv.execute(process.argv.slice(2));