Skip to content
Snippets Groups Projects
Commit 7031ff7b authored by Sebastian Müller's avatar Sebastian Müller 🐈
Browse files

datetime: fix doc-string example

parent 3f4eb514
No related branches found
No related tags found
1 merge request!86mo_datetime: better conversion from string
Pipeline #282646 passed with stages
in 8 minutes and 14 seconds
......@@ -43,8 +43,8 @@
!!
!! ! create from datetime string
!! date5 = datetime('2023-05-08 12:32:30')
!! day1 = date('2023-05-08')
!! time1 = time('12:32:30')
!! day1 = puredate('2023-05-08')
!! time1 = puretime('12:32:30')
!! print*, date5 == time1%with_date(day1)
!! print*, date5 == day1%with_time(time1)
!! print*, date5 == datetime(day1, time1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment