Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 21, 2017 09:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
int x = 1;
int y = 1;
retrun x == y; //retruns true
var x = new SomeType();
var y = new SomeType();
return x == y, //returns false
@diogocid
Copy link

the word "retrun" are correct?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment