Merge pull request #138 from erezwanderman/fixwindows

Fix ethereum compilation and functioning on Windows.
This commit is contained in:
Jeffrey Wilcke
2014-10-17 17:26:04 +02:00
4 changed files with 141 additions and 5 deletions

View File

@ -44,9 +44,11 @@ function pp(object) {
function prettyPrint(/* */) {
var args = arguments;
var ret = "";
for(var i = 0, l = args.length; i < l; i++) {
console.log(pp(args[i]))
ret += pp(args[i]) + "\n";
}
return ret;
}
var print = prettyPrint;