blob: 221ac57f6a043ce23b709f6c5086a1b86123e6f5 (
plain)
1
2
3
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
const res = await fetch("http://localhost:4545/std/examples/colors.ts");
console.log(`Response http: ${await res.text()}`);
|