Created
May 25, 2012 21:28
-
-
Save tskrynnyk/2790712 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env clisp | |
| (setq dzien (nth 3 (multiple-value-list (get-decoded-time) ))) | |
| (setq miesiac-n (nth 4 (multiple-value-list (get-decoded-time) ))) | |
| (setq rok (nth 5 (multiple-value-list (get-decoded-time) ))) | |
| (setq miesiace `("stycznia" "lutego" "marca" "kwietnia" "maja" "czerwca" "lipca" "sierpnia" "września" "października" "listopada" "grudnia")) | |
| (setq miesiac (nth (- miesiac-n 1) miesiace)) | |
| (format t "Dzisiaj jest ~S ~A ~S r. ~%" dzien miesiac rok) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment