Created
August 8, 2017 12:35
-
-
Save dayvsonlima/a0d617791b52a9ab2dd4d7a26c25fc5f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def soma_dois_numeros(a, b) | |
return a + b | |
end | |
expect(soma_dois_numeros(1, 2)).to eq(3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment