summaryrefslogtreecommitdiff
path: root/std/examples/colors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/examples/colors.ts')
-rw-r--r--std/examples/colors.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/std/examples/colors.ts b/std/examples/colors.ts
deleted file mode 100644
index 4af8d9bfa..000000000
--- a/std/examples/colors.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import { bgBlue, bold, italic, red } from "../fmt/colors.ts";
-
-if (import.meta.main) {
- console.log(bgBlue(italic(red(bold("Hello world!")))));
-}