console
xxx@XXX:~$ sudo apt install clang
console
xxx@XXX:~$ cargo install smt-lang
console
xxx@XXX:~$ smt-lang --file problem_file.sl
``` let b: Bool let i: 1..100 let r: Real
constraint C1 = ( i >= 10 ) constraint C2 = ( r <= 20.0 and b ) ```
console
xxx@XXX:~$ smt-lang --file example.sl
let b: Bool = true
let i: 1..100 = 10
let r: Real = 20