Last active
May 3, 2020 13:12
-
-
Save garywu125/a4b6c8db420a8e825006fba277205957 to your computer and use it in GitHub Desktop.
Revisions
-
garywu125 revised this gist
May 3, 2020 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ 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"); -
garywu125 renamed this gist
May 2, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
garywu125 created this gist
May 2, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ import { bgBlue, red, bold } from "https://deno.land/std/fmt/mod.ts"; const sayHello = (name: string = "world") => { console.log(bgBlue(red(bold(`Hello ${name}!`)))); } sayHello(); sayHello("Conlin");