runlet 0.1.0

A semantic executable model for the Runlet orchestration language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Arithmetic, comparison, membership, and conditional expressions.
unit_price = 19
quantity = 3
subtotal = unit_price * quantity
shipping = 0 if subtotal >= 50 else 5
total = subtotal + shipping

return {
    subtotal,
    shipping,
    total,
    label: "Total: " + total,
    qualifies_for_free_shipping: total >= 50,
    category: "large" if quantity >= 10 else "standard"
}