#!/usr/bin/env node; /****************************************************************************** * This program converts Ferengi currency. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ const SLIPS_PER_STRIP = 100; const STRIPS_PER_BAR = 20; const main = async () => { let bars = 500; let strips = bars * STRIPS_PER_BAR * SLIPS_PER_STRIP; console.log([bars, " bars = ", strips, " strips"].join('')); } main().catch( e => { console.error(e) } );