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