/** * helloworld-html.js * */ import {terminal} from "./dfhi.js"; window.main = function(...argv) { let name = argv[0]; let color = 'blue'; let greeting = ` Hallo ${name} `; terminal.printh(greeting); };