RosettaCodeData/Task/Date-format/BASIC/date-format.basic

7 lines
129 B
Plaintext

#include "vbcompat.bi"
DIM today As Double = Now()
PRINT Format(today, "yyyy-mm-dd")
PRINT Format(today, "dddd, mmmm d, yyyy")