blob: 4fb3db83b59305ecf2c6b221022eb9789c211279 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
async function main(): Promise<void> {
const res = await fetch("http://deno.land/welcome.ts");
console.log(`Response http: ${await res.text()}`);
}
main();
|