Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
175 B

1 year ago
f();
g(a);
h(a, b);
i(a, b, ...c);
j(...a);
a.k();
(a + b).l();
a.m().n();
new A();
new A(a);
new a.B();
new a.b.C();
new (a().B)();
new A().b();
new new A()();
new (A, B)();