Skip to content

Instantly share code, notes, and snippets.

@tomwhoiscontrary
Created May 16, 2018 17:29
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 tomwhoiscontrary/3c33d41a919f608878f5243f1b701a23 to your computer and use it in GitHub Desktop.
Save tomwhoiscontrary/3c33d41a919f608878f5243f1b701a23 to your computer and use it in GitHub Desktop.
do not do this
public class Calculus {
public static void main(String[] args) {
double δx = 17.0;
double δy = 23.0;
double δxノδy = δx / δy;
System.out.println("δxノδy = " + δxノδy);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment