πͺ
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
| console.log("this should print twice, and the panic should be after the second print"); | |
| Deno.setRaw(0, true); | |
| Deno.setRaw(0, false); | |
| const process = Deno.run({ | |
| cmd: [Deno.execPath(), "run", "--unstable", new URL(import.meta.url).href], | |
| stdout: "piped", | |
| stderr: "piped", | |
| stdin: "piped" |
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
| import marked from "https://dev.jspm.io/[email protected]"; | |
| const result = marked.lexer(` | |
| ## Example | |
| hello | |
| \`\`\`typescript | |
| console.log(123); | |
| \`\`\` |