Created
February 22, 2015 02:38
-
-
Save victorvhpg/36948d6c2892e9a41cab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
//dependencias do modulo | |
var Personagem = require("./Personagem"); | |
var qualquerCoisa = require("./qualquerCoisa"); | |
var app = { | |
init: function() { | |
console.log("app init()"); | |
var p1 = new Personagem("Personagem 1"); | |
p1.soltarPoder(); | |
p1.falar("Oi pessoal"); | |
qualquerCoisa.fazAlgo(); | |
console.log("qualquerCoisa: ", qualquerCoisa); | |
} | |
}; | |
app.init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment