Created
May 28, 2020 18:32
-
-
Save diegogriep/38bf0f48b6e2876ac61b85ca8491c537 to your computer and use it in GitHub Desktop.
This file contains 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 characters
const createArray = <A, B>(a: A, b: B) => { | |
return [a, b]; | |
} | |
let showArray = createArray('Brasil', 2020); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment