brewery
notashelf /
f6481b3c0120ff2f5a3abc60b19cd48bb97581ab

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/fixtures/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