View Subcategory

Display the current date and time

Create a Date object representing the current date and time. Print it out.
If you can also do this without creating a Date object you can show that too.
php
echo date('r') . "\n";
$d = new DateTime();
echo $d->format('r') . "\n";
erlang
io:format("~p~n", [calendar:local_time()])
csharp
// Creating a variable first:
DateTime now = DateTime.Now;
Console.WriteLine(now);

// Without creating a variable:
Console.WriteLine(DateTime.Now);
clojure
(import 'java.util.Date)

(println (str (Date.)))