Created
April 20, 2020 18:48
-
-
Save Quadrisheriff/f35c655e2885cfac6f67823b9af296a8 to your computer and use it in GitHub Desktop.
Revisions
-
Quadrisheriff created this gist
Apr 20, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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);