Minor edits.
This commit is contained in:
@@ -273,7 +273,7 @@ Which then becomes this:
|
||||
|
||||
5 1 >> u sqr u
|
||||
|
||||
The interpreter could notice that `5 1 >>` and `u sqr` can proceed in parallel without interfering with each other. The `dipdip` combinator could be written to somehow hint to the interpreter that it should check for this posibility.
|
||||
The interpreter could notice that `5 1 >>` and `u sqr` can proceed in parallel without interfering with each other. The `dipdip` combinator could be written to somehow hint to the interpreter that it should check for this possibility.
|
||||
|
||||
|
||||
## JIT
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
Great talk from Jon Purdy in 2017, he wrote Kitten.
|
||||
Concatenative Programming: From Ivory to Metal
|
||||
https://www.youtube.com/watch?v=_IgqJr8jG8M
|
||||
|
||||
Concatenative Programming: From Ivory to Metal
|
||||
|
||||
Great talk from Jon Purdy in 2017, he wrote Kitten.
|
||||
|
||||
"Complete and Easy Bidirectional Typechecking
|
||||
for Higher-Rank Polymorphism"
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
|
||||
Basis Function
|
||||
|
||||
Take two numbers `a` and `b` from the stack and raise `a` to the `n`th
|
||||
power. (`b` is on the top of the stack.)
|
||||
Take two numbers `a` and `n` from the stack and raise `a` to the `n`th
|
||||
power. (`n` is on the top of the stack.)
|
||||
|
||||
a n pow
|
||||
-------------
|
||||
|
||||
Reference in New Issue
Block a user