brewery
notashelf /
b319ef6f3f9fc1123b7cd9c1f5df414e163d674c

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