egglog 2.0.0

egglog is a language that combines the benefits of equality saturation and datalog. It can be used for analysis, optimization, and synthesis of programs. It is the successor to the popular rust library egg.
Documentation
1
2
3
4
5
6
7
8
; Tests for the string sort

; Concatenation
(check (= (+ "a" "bc" "de") "abcde"))
; Counting the number of substring occurances
(check (= (count-matches "ab ab" "ab") 2))
; replacing a substring
(check (= (replace "ab ab" "ab" "cd") "cd cd"))