blob: 5c0f1ac77f31c4592b0a31eb1fc7e82d576260c7 (
plain)
1
2
3
4
5
6
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { bgBlue, bold, italic, red } from "../fmt/colors.ts";
if (import.meta.main) {
console.log(bgBlue(italic(red(bold("Hello world!")))));
}
|