Guest User

Untitled

a guest
Jan 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // @flow
  2. /**
  3. * Adds two numbers together
  4. */
  5. function add(first: number, second: number): number {
  6. return first + second;
  7. }
Add Comment
Please, Sign In to add comment