Skip to content

Instantly share code, notes, and snippets.

@bdunn313
Created January 8, 2018 15:54
Show Gist options
  • Save bdunn313/2c84be9b879794eef3067235240ffca0 to your computer and use it in GitHub Desktop.
Save bdunn313/2c84be9b879794eef3067235240ffca0 to your computer and use it in GitHub Desktop.
documenting-js-projects-flow-example
// @flow
/**
* Adds two numbers together
*/
function add(first: number, second: number): number {
return first + second;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment