Skip to content

Instantly share code, notes, and snippets.

@johadi
Created May 30, 2018 22:17
Show Gist options
  • Save johadi/e23e26b2ed809cf4dd4922db7f4bd484 to your computer and use it in GitHub Desktop.
Save johadi/e23e26b2ed809cf4dd4922db7f4bd484 to your computer and use it in GitHub Desktop.
Calculate some arithmetic
class Double {
public double getDouble(value) {
return 2*value;
}
public static voind main(args[] string) {
System.out.println(getDouble(8)); // returns 16
}
}
function square(val) {
const result = val*val;
return result;
}
console.log(square(5)); // returns 25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment