diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-03-18 16:08:01 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-18 11:08:01 -0400 |
| commit | 2e1ed890b85d4ecf1a6332cf2e0c121d5640b496 (patch) | |
| tree | 6675fa9c8ed42d3e2d85583f5be3ce6456f2af9c /examples | |
| parent | d1b0a1ef6c9cf0726687402bd12ce9ad4ead8424 (diff) | |
Documentation clean up (denoland/deno_std#288)
Original: https://github.com/denoland/deno_std/commit/b699fa67befaef4423f365e55eff0fec2e14def8
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/colors.ts | 4 |
1 files changed, 4 insertions, 0 deletions
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!"))))); |
