date_format.sf 172 B

1234567891011
  1. #!/usr/bin/ruby
  2. #
  3. ## https://rosettacode.org/wiki/Date_format
  4. #
  5. var time = Time.local;
  6. say time.ctime;
  7. say time.strftime("%Y-%m-%d");
  8. say time.strftime("%A, %B %d, %Y");