A Collection of Code Snippets in as Many Programming Languages as Possible
This project is maintained by TheRenegadeCoder
Welcome to the Baklava in Picolisp page! Here, you'll find the source code for this program as well as a description of how the program works.
(de repeat_string (S N)
(if (> N 0)
(pack S (repeat_string S (- N 1)))
""
)
)
(for X 21
(setq N (- X 11))
(setq NSP (abs N))
(setq NST (- 21 (* 2 NSP)))
(prinl (pack (repeat_string " " NSP) (repeat_string "*" NST)))
)
(bye)
Baklava in Picolisp was written by:
If you see anything you'd like to change or update, please consider contributing.
No 'How to Implement the Solution' section available. Please consider contributing.
No 'How to Run the Solution' section available. Please consider contributing.