dashboard
repositories
filestore
activity
search
login
javascript-vorlesung
/
example-projects-2026
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Bugfix
Hong-Phuc Bui
2025-11-20
9ba573284ccde687b4c190c0f44032eef846410a
[javascript-vorlesung/example-projects-2026.git]
/
textbased-programms
/
hello-name.js
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
* @author Hong-Phuc Bui
* initial version 27.12.2018
* */
import {terminal} from "./dfhi.js";
window.main = (...argv) => {
for(let e of argv) {
terminal.printl(e);
}
};