Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
require 'active_suport'
t = 1.day.since.to_s
SysUtils;
t := DateToStr(Now+1.0);
import java.time.LocalDate;
LocalDate t = LocalDate.now().plusDays(1);
DateTime t = DateTime.Today.AddDays(1);
$t = date('D',strtotime('+1 day'));
from datetime import date, timedelta
date.today() + timedelta(days=1)
require "date"
t = Date.tomorrow.to_s
$t = new \DateTime('tomorrow');
import "time"
t := time.Now().Add(24 * time.Hour).Format("2006-01-02")
var currentDate = new Date(new Date().getTime() + 24 * 60 * 60 * 1000); var day = currentDate.getDate() var month = currentDate.getMonth() + 1 var year = currentDate.getFullYear() var t = `${day}/${month}/${year}`;
var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1);
use DateTime qw();
my $dt = DateTime->today; $dt->add(days => 1); my $t = $dt->strftime('%F');
Dim t As Date = Date.Today.AddDays(1)
let t = chrono::Utc::now().date().succ().to_string();