c0d3x42 / pico-rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pico-Lang

Rust

A minimal and safe programming language expressed in JSON

Install

cargo install pico-lang

build

cargo build

or just run it

cargo run

enable nats (incomplete)

cargo run --features srv_nats

PicoRules

JSON formmated file that encapsulates your logic

see simple.rule.json example rule file

start server with

cargo run --package picolang-applications

submit rule execution

curl -X POST localhost:8000/submit -d '{"nochicken": 1}' -H 'Content-Type: application/json'

returns:

{"namespaced":{},"input":{"nochicken":1},"locals":{"enochicken":"must be no hens"}}

and with a chicken:

curl -X POST localhost:8000/submit -d '{"chicken": 1}' -H 'Content-Type: application/json'

returns:

{"locals":{"egg":"must have been layed"},"namespaced":{},"input":{"chicken":1}}

warp submit

curl -v -X POST localhost:8000/submit -d '{"xp": "x1xxx", "y": "y2"}' -H 'Content-Type: application/json'
curl -v -X POST localhost:8000/submit -d '{"xp": "x1xxx", "y": "y2", "json": {"ja": "rules"}}' -H 'Content-Type: application/json'

benchmark

wrk -t 5 -c 40 -s bench/sub.lua http://localhost:8000/submit

About


Languages

Language:Rust 99.9%Language:Lua 0.1%