Files

9 lines
225 B
JavaScript
Raw Permalink Normal View History

2022-05-10 22:43:25 +02:00
package LibHello {
class Hello {
function say() {
var d = new Date();
var n = Math.random();
return 'Hello, \\ntoday is ' + d + '\\nand this is random - ' + n;
}
}
}