Skip to content

Instantly share code, notes, and snippets.

@garbles
Last active March 11, 2017 00:32
Show Gist options
  • Save garbles/5760019d614ca1f9f120274217dc5905 to your computer and use it in GitHub Desktop.
Save garbles/5760019d614ca1f9f120274217dc5905 to your computer and use it in GitHub Desktop.
// @flow
function giveMeStrings(arr: string[]): string {
// do something with the array of strings
}
giveMeStrings('hello', 'goodbye');
/*
ERROR:
7: giveMeStrings('hello', 'goodbye');
^ string. This type is incompatible with the expected param type of
3: function giveMeStrings(arr: string[]): string {
^ array type
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment