1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 20:04:03 -05:00
denoland-deno/colors/example.ts

4 lines
111 B
TypeScript
Raw Normal View History

2019-01-19 21:09:35 +11:00
import { bgBlue, red, bold, italic } from "./mod.ts";
2018-12-19 13:20:06 -05:00
2019-01-19 21:09:35 +11:00
console.log(bgBlue(italic(red(bold("Hello world!")))));