brewery
notashelf /
79f99f189f84a5b0d760d3db80be97d6997ce7d7

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/logical.nixNix6 lines105 B
1
# Test logical operators
2
let
3
  x = true;
4
  y = false;
5
in
6
  if x && y then 1 else if x || y then 2 else 3