stm 0.4.0

Implementation of Software transactional memory. Allows composable atomic operations.
Documentation
1
2
3
4
5
6
7
8
9
#! /bin/sh
case "$1" in 
    test)
        cargo watch -c -s "cargo test \"$2\" --color always &> /dev/stdout | head -n 50"
    ;;
    *)
        cargo watch -c -s 'cargo check --color always &> /dev/stdout | head -n 50'
    ;;
esac