ideas - pannous/wasp GitHub Wiki

ideas

see inventions

We could also compile wasp to native by bundling/calling wasm2c -> tinycc !

Optional automatic memory management: none, manual, gc or arc : https://docs.elementscompiler.com/Concepts/ARCvsGC/

rye is homoiconic, it has no keywords or special forms (everything is a function call, everything is a value) if x {then} either x {then} {otherwise} animal: "duck" print switch animal { "duck" { "quack" } "dog" { "woof" } } say-hello: { print "hello" } do say-hello