brewery
notashelf /
3dd2d604ce6ca911399e13a1f89f4acc3ee2de37

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