brewery
notashelf /
775bb42c63250b3ee17c160d78dd492b50a1c9eb

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