brewery
notashelf /
3387e0d822a24b85d7c7572e0b21b7dfd25d4230

nixir

public

Import-resolving Nix IR plugin

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