Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Created May 20, 2018 08:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwalgemoed/dbfc01054a80685c3ab580bdb7c97dff to your computer and use it in GitHub Desktop.
Save jwalgemoed/dbfc01054a80685c3ab580bdb7c97dff to your computer and use it in GitHub Desktop.
// Classic declaration, we are repeating ourselves
Integer ten = new Integer(10);
// New declaration, using 'var'
var ten = new Integer(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment