kit
kit
git clone
https://git.ryansepassi.com/git/kit.git
Log
|
Files
|
Refs
|
README
legacy_logical_operator.toy (63B)
1
fn main(): i64 {
2
if 1 && 1 {
3
return 0;
4
}
5
return 1;
6
}