Skip to content

Commit

Permalink
Merge pull request #20 from CableGuy67/wiki
Browse files Browse the repository at this point in the history
change forth for code blocks. Forth doesn't seem to be highlighting c…
  • Loading branch information
CableGuy67 authored Oct 9, 2023
2 parents 7d7e0da + 5ee5962 commit 0d1f896
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wiki/History/History.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ History
- Wordlist entries are now 8bit clean. Words with umlauts or e.g. Greek commands
work as expected, unless the terminal does not cooperate. Thanks to Enoch.

```Forth
```forth
> : Σ 0 swap 0 do + loop ;
ok
> 7 8 9 3 Σ .
Expand Down Expand Up @@ -192,13 +192,13 @@ History
in [reStructured Text](http://sphinx-doc.org/).
- lib: Simple Quotations. Their typical use case is

```Forth
```forth
: foo ... [: bar baz ;] ... ;
```

which is equivalent to

```Forth
```forth
:noname bar baz ; Constant#temp#
: foo ... #temp# ...;
```
Expand All @@ -221,7 +221,7 @@ History
destination on the stack. If there is nothing, a stack underflow exception
gets thrown.

```Forth
```forth
> : ?do i . loop ;
?? -4 14
> : t2 ?do i . loop ;
Expand Down

0 comments on commit 0d1f896

Please sign in to comment.