provekit_nargo_cli 1.0.0-beta.20-alpha.1

Noir's package manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn not_equal(x: Field, y: Field) -> bool {
    x != y
}

#[test]
fn test_not_equal() {
    assert(not_equal(1, 2));

    // Uncomment to make test fail
    // assert(not_equal(1, 1));
}