mirror of
https://github.com/antirez/aocla
synced 2024-12-26 09:58:42 +01:00
README: fix markdown of a code block.
This commit is contained in:
parent
409a373be8
commit
5bc204546c
1 changed files with 4 additions and 4 deletions
|
@ -116,10 +116,10 @@ To push an empty list on the stack, you can use:
|
|||
|
||||
Then it is possible to add elements to the tail or the head of the list using the `<-` and `->` procedures:
|
||||
|
||||
aocla> 1 swap ->
|
||||
[1]
|
||||
aocla> 2 swap ->
|
||||
[1 2]
|
||||
aocla> 1 swap ->
|
||||
[1]
|
||||
aocla> 2 swap ->
|
||||
[1 2]
|
||||
|
||||
Note that these procedures are designed to insert the last element in the
|
||||
stack into the list that is the penultimate element in the stack, so,
|
||||
|
|
Loading…
Reference in a new issue