Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Quadrisheriff/f35c655e2885cfac6f67823b9af296a8 to your computer and use it in GitHub Desktop.

Select an option

Save Quadrisheriff/f35c655e2885cfac6f67823b9af296a8 to your computer and use it in GitHub Desktop.

Revisions

  1. Quadrisheriff created this gist Apr 20, 2020.
    6 changes: 6 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    int num = 20; // is a integer
    float newNum = 2.5; // is a float
    string myName = "sugar"; // is a string
    System.out.println(num);
    System.out.println(newNum);
    System.out.println(myName);