How to resolve the algorithm Date format step by step in the PicoLisp programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Date format step by step in the PicoLisp programming language

Table of Contents

Problem Statement

Display the   current date   in the formats of:

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Date format step by step in the PicoLisp programming language

Source code in the picolisp programming language

(let (Date (date)  Lst (date Date))
   (prinl (dat$ Date "-"))             # 2010-02-19
   (prinl                              # Friday, February 19, 2010
      (day Date)
      ", "
      (get *MonFmt (cadr Lst))
      " "
      (caddr Lst)
      ", "
      (car Lst) ) )

  

You may also check:How to resolve the algorithm Function composition step by step in the Icon and Unicon programming language
You may also check:How to resolve the algorithm Read entire file step by step in the REXX programming language
You may also check:How to resolve the algorithm Even or odd step by step in the SSEM programming language
You may also check:How to resolve the algorithm Roots of a quadratic function step by step in the Wren programming language
You may also check:How to resolve the algorithm Gapful numbers step by step in the Lambdatalk programming language