runrust 10.34.2

Command-line tool to run Rust "scripts" which can make use of crates.
1
2
3
4
5
6
7
8
#!/bin/sh
set -e -u

runrust -e 'println!("hello");'
runrust -e '1+1'
runrust -e '1+2'
runrust -e '1+3'
runrust -d 'unicode-segmentation' -e 'unicode_segmentation::UnicodeSegmentation::graphemes("a̐éö̲", true).count()'