This is an example of FIFO list usage. This small command-line application will store key/value pairs "key1"/"value1" and "key2"/"value2" and then obtain them twice.
First, let's create a directory for our application:
mkdir test-list cd test-list/Copied!

And then create the application itself:
gg -k list-app
Copied!

Copy and paste the Golf code below to file "list.golf":
begin-handler /list silent-header // Create a list new-fifo mylist // Add data to the list write-fifo mylist key "key1" value "value1" write-fifo mylist key "key2" value "value2" start-loop // Get data from the list read-fifo mylist key k value v status st // Check if no more data if-true st not-equal GG_OKAY break-loop end-if @Obtained key <<p-out k>> with value <<p-out v>> end-loop // Go through the list again, use rewind-fifo for that rewind-fifo mylist start-loop read-fifo mylist key k value v status st if-true st not-equal GG_OKAY break-loop end-if @Again obtained key <<p-out k>> with value <<p-out v>> end-loop // Delete FIFO list purge-fifo mylist end-handlerCopied!

The code above uses new-fifo statement to create a FIFO variable, write-fifo to add key/value pairs to it, and read-fifo to obtain them back in the order they were put in. You can use rewind-fifo to rewind back to the beginning at any time, as many times as you need.
Make the executable:
gg -q --publicCopied!

Execute the program:
gg -r --req="/list" --app="/list-app" --execCopied!

The result is as expected:
Obtained key key1 with value value1 Obtained key key2 with value value2 Again obtained key key1 with value value1 Again obtained key key2 with value value2Copied!
