Matz's programming language based on prototype of stream (github.com) 4 points by DAddYE 10y ago ↗ HN
[–] geophile 10y ago ↗ Looks a lot like osh (https://github.com/geophile/osh). Here is the osh version of the FizzBuzz example (run in a Linux shell): osh gen 100 1 ^ f 'x: "FizzBuzz" if x % 15 == 0 else "Fizz" if x % 3 == 0 else "Buzz" if x % 5 == 0 else x' $ The function in single quotes is a python function, and in fact osh streams python tuples between commands (which are separated by ^).While this example runs on the command line, there is also a python API. [–] DAddYE 10y ago ↗ Yup, and also Luna https://github.com/tj/luna/blob/master/examples/fork.luna
2 comments
[ 3.8 ms ] story [ 19.8 ms ] threadWhile this example runs on the command line, there is also a python API.