#!/usr/bin/env node; /****************************************************************************** * This program prints "I think I Can!" * * Copyright © 2016 Richard Lesh. All rights reserved. *****************************************************************************/ const main = async () => { console.log("I think I can!"); console.log("I think I can!"); console.log("I think I can!"); console.log("I think I can!"); console.log("I think I can!"); } main().catch( e => { console.error(e) } );