radix-clis 1.4.0

A collection of CLIs for developing, building and testing Scrypto code, from the Radix DLT project.
1
2
3
4
5
6
7
pub fn list_item_prefix(last: bool) -> &'static str {
    if last {
        "└─"
    } else {
        "├─"
    }
}