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:2053
BEGIN {
    printf "%s\n", sprintf("%02x", 13 + 10)
    printf "%s\n", tolower("X2053Y")
    printf "%d\n", ("ab" < "ac") + ("x" == "x")
    printf "%d\n", (16 < 80) + (80 < 20) * 2
}