mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
import foo from "mappedfoo";
|
|
import bar from "./ext/bar.ts";
|
|
import * as fs from "jsr:@std/fs";
|
|
|
|
console.log(foo);
|
|
console.log(bar);
|
|
console.log(fs.CRLF);
|