Skip to content

Instantly share code, notes, and snippets.

@pckilgore
Created April 21, 2021 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pckilgore/ac3c6f90ae256ef4e8d8f5ee113cb77a to your computer and use it in GitHub Desktop.
Save pckilgore/ac3c6f90ae256ef4e8d8f5ee113cb77a to your computer and use it in GitHub Desktop.
HelloWorld.ts
type message = { hello: "world" };
function greeter(t: message) {
return Object.entries(t).flat().join(" ");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment