#data-structures
Read more stories on Hashnode
Articles with this tag
Writing code in PicoLisp means to think a lot in lists and list structures. This is because lists are one of only three data types in PicoLisp, the...
In the last post, we showed how lists look like and discussed recursion concepts and the member predicate. Today we will look into some further list...
This post follows the tutorial from "Learn Prolog Now!", Chapter 1. The goal of this post is to introduce the basic concept and syntax of Pilog and to...
We have now covered the basics of frontend- and backend development in PicoLisp. To get the full stack, we still need one more thing: the...
Level-order traversal ยท Welcome back to the second part of the "Binary tree traversal" task from Rosetta Code. This is a follow up to part 1. We have...
Today we will discuss an interesting function called fifo: First-In-First-Out. As always in "PicoLisp Explored", we will check the documentation and...