import Lake open Lake DSL package scripts where defaultFacet := .none /-- Display a greeting USAGE: lake run greet [name] Greet the entity with the given name. Otherwise, greet the whole world. -/ script greet (args) do if h : 0 < args.length then IO.println s!"Hello, {args.get ⟨0, h⟩}!" else IO.println "Hello, world!" return 0