#!/usr/bin/env node; /****************************************************************************** * Simple first program. * * Copyright © 2020 Richard Lesh. All rights reserved. *****************************************************************************/ const main = async () => { console.log("Hello, world!"); } main().catch( e => { console.error(e) } );