Skip to content

Instantly share code, notes, and snippets.

@garywu125
Last active May 3, 2020 13:12
Show Gist options
  • Select an option

  • Save garywu125/a4b6c8db420a8e825006fba277205957 to your computer and use it in GitHub Desktop.

Select an option

Save garywu125/a4b6c8db420a8e825006fba277205957 to your computer and use it in GitHub Desktop.
demo gist-hosted script
import { bgBlue, red, bold } from "https://deno.land/std/fmt/mod.ts";
const sayMyHello = (name: string = "my world") => {
console.log(bgBlue(red(bold(`Hello ${name}!`))));
}
sayHello();
sayHello("myConlin");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment