This commit is contained in:
Oliver
2025-06-23 09:42:07 -03:00
parent c352992708
commit cf823126d5
391 changed files with 13389 additions and 7731 deletions

View File

@@ -1,14 +1,14 @@
function Hello(){
var name;
this.setName=function(tyname){
name = tyname;
}
this.sayHello = function(){
console.log("Hello"+name);
}
}
module.exports = Hello;
function Hello(){
var name;
this.setName=function(tyname){
name = tyname;
}
this.sayHello = function(){
console.log("Hello"+name);
}
}
module.exports = Hello;