1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-27 17:49:08 -05:00
denoland-deno/examples/colors.ts

5 lines
194 B
TypeScript
Raw Normal View History

2019-02-07 11:45:47 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-03-18 11:08:01 -04:00
import { bgBlue, red, bold, italic } from "../colors/mod.ts";
2018-12-19 13:20:06 -05:00
2019-01-19 05:09:35 -05:00
console.log(bgBlue(italic(red(bold("Hello world!")))));