Created
August 5, 2020 09:58
-
-
Save Core-commits/94e3560940b591019852290f6631ea24 to your computer and use it in GitHub Desktop.
I dunno
This file contains 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 characters
package com.company; | |
import java.awt.*; | |
import java.util.Date; | |
public class Main { | |
public static void main(String[] args) { | |
// Data Types | |
byte age = 10; | |
long viesCount = 120310331312L; | |
double price = 29.22; | |
float Me = 20.21f; | |
char Poop = 'P'; | |
boolean IsGay = true; | |
// Starting Objects | |
Date now = new Date(); | |
// Printing Objects and Data | |
System.out.println(now.getTime()); | |
System.out.println(age); | |
System.out.println(viesCount); | |
System.out.println(price); | |
System.out.println(Me); | |
System.out.println("Is gay!!!"); | |
// Pointers | |
// Creating new testpointer object (I forgot what it did lol) | |
Point TestPointer = new Point(1,2); | |
System.out.println(TestPointer+" Is the first pointer"); | |
System.out.println(TestPointer +" Is the second pointer"); | |
System.out.println("This is the story of uh.... i dont know."); | |
}} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment