BadVPN – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 process main {
2 var(@checksum(@inverted_sum_bytes, "")) x;
3 assert(@val_equal(x, "255"));
4  
5 var(@checksum(@inverted_sum_bytes, "\x01\x02\xFF")) x;
6 assert(@val_equal(x, "253"));
7  
8 exit("0");
9 }