awkrs 0.1.38

Awk implementation in Rust with broad CLI compatibility, parallel records, and experimental Cranelift JIT
Documentation
1
2
3
4
5
6
7
# portable:2653
BEGIN {
    printf "%s\n", sprintf("%02x", 1 + 10)
    printf "%s\n", tolower("X2653Y")
    printf "%d\n", ("ab" < "ac") + ("x" == "x")
    printf "%d\n", (45 < 48) + (48 < 77) * 2
}