mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
7 реда
173 Б
TypeScript
7 реда
173 Б
TypeScript
function test() {
|
|
// this comment should be in output
|
|
return 1 + 1;
|
|
}
|
|
|
|
// should include the comments because people rely on this behavior
|
|
console.log(test.toString());
|