1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-04 17:18:23 -05:00
denoland-deno/colors/example.ts

4 lines
111 B
TypeScript
Raw Normal View History

2019-01-19 05:09:35 -05:00
import { bgBlue, red, bold, italic } from "./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!")))));