PicoLisp Blog

PicoLisp Blog

Follow
homeGetting StartedWeb AppsDatabaseMobile AppsPilogPicoLisp Explored
Tag

data structures

#data-structures

More content

Read more stories on Hashnode


Articles with this tag

Working with Lists - push, pop, and more.

Jan 14, 20226 min read

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...

Working with Lists - push, pop, and more.

Learning Pilog - 6: More Lists

Nov 7, 20214 min read

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...

Learning Pilog - 6: More Lists

Learning Pilog - 2: Facts, Rules, Queries

Nov 3, 20215 min read

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...

Learning Pilog - 2: Facts, Rules, Queries

Introduction to the PicoLisp Database

Oct 21, 20214 min read

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...

Introduction to the PicoLisp Database

Binary Tree Traversal, Part 2

Sep 26, 20214 min read

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...

Binary Tree Traversal, Part 2

PicoLisp Explored: The fifo function

Sep 25, 20213 min read

Today we will discuss an interesting function called fifo: First-In-First-Out. As always in "PicoLisp Explored", we will check the documentation and...

PicoLisp Explored: The fifo function