From 2e1ed890b85d4ecf1a6332cf2e0c121d5640b496 Mon Sep 17 00:00:00 2001 From: Vincent LE GOFF Date: Mon, 18 Mar 2019 16:08:01 +0100 Subject: Documentation clean up (denoland/deno_std#288) Original: https://github.com/denoland/deno_std/commit/b699fa67befaef4423f365e55eff0fec2e14def8 --- examples/colors.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/colors.ts (limited to 'examples') diff --git a/examples/colors.ts b/examples/colors.ts new file mode 100644 index 000000000..9468e8768 --- /dev/null +++ b/examples/colors.ts @@ -0,0 +1,4 @@ +// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +import { bgBlue, red, bold, italic } from "../colors/mod.ts"; + +console.log(bgBlue(italic(red(bold("Hello world!"))))); -- cgit v1.2.3