Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 371 Bytes

File metadata and controls

14 lines (10 loc) · 371 Bytes
  • Write an echoProgram function (or echo_program depend on language) that returns your solution source code as a string.

Note:

  • Function.prototype.toString has been disabled.

Solution:

function echoProgram() {
  return require("fs").readFileSync("solution.txt", "utf-8");
}