mirror of
https://github.com/denoland/deno.git
synced 2024-12-01 16:51:13 -05:00
8 lines
173 B
TypeScript
8 lines
173 B
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());
|