[RESOLVED] a minute() question
              in 
             Programming Questions 
              •  
              6 months ago    
            
 
           
                   I am creating a date and time string, which works mostly great for my needs:
            
            
            
            
Any tips to fix this? Thanks
 
           
 
            
           - //time and date
 - int mo = month();
 - int d = day();
 - int y = year();
 - int m = minute();
 - int h = hour();
 - String timeDate = mo + "/" + d + "/" + y + " at " + h + ":" + m;
 - println(timeDate);
 
Any tips to fix this? Thanks
 
              
              1  
            
 
            