It’s always comforting to know there are people out there who understand you.
Leave a commentPosts tagged with: Code
Happy 2011
<?= 'Happy ' . date('Y'); ?>
<%= 'Happy ' . Time.now.year.to_s %>
from datetime import datetime
print 'Happy ' + str(datetime.now().year)
import java.util.Calendar;
System.out.print('Happy ' + Calendar.getInstance().get(Calendar.YEAR));
Leave a comment
