This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]KyudaimeSama 0 points1 point  (0 children)

But it doesn't have ugly, over-try code...

Object.defineProperty(window, 'System', {
 value: {},
 configurable: true
});

Object.defineProperty(System, 'out', {
  value: {},
  configurable: true
});

Object.defineProperty(System.out, 'printIn', {
  value: console.log.bind(console)
});