Last active
May 3, 2020 13:12
-
-
Save garywu125/a4b6c8db420a8e825006fba277205957 to your computer and use it in GitHub Desktop.
demo gist-hosted script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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