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.
If you can also do this without creating a Date object you can show that too.
clojure
(import 'java.util.Date)
(println (str (Date.)))
(println (str (Date.)))
fantom
echo(DateTime.now)
