String user == gameJolt.user
String profile == gameJolt.user.Id("bayclaus")

if (user.enters(profile)) {
 System.out.println("Welcome to my profile!");
else
 return;
}
		
	

  • Output:

    		
    			Welcome to my profile!
    		
    	
		
			String collectData[] = {
 "Age: 19" +
 "Id: Bay Claus" +
 "Favorite Game: Minecraft" +
 "Job: None" +
 "Like todo: Coding"
}
for (int i = 0; i < collectData[].size; i++) {
 System.out.println(collectData[i]);
}
		
	

  • Output

    		
    			Age: 19
    		
    	
    		
    			Id: Bay Claus
    		
    	
    		
    			Favorite Game: Minecraft
    		
    	
    		
    			Job: None
    		
    	
    		
    			Like todo: Coding
    		
    	

So, whats up?