Skip to content

Instantly share code, notes, and snippets.

@ezyang
Created November 29, 2020 20:53
Show Gist options
  • Select an option

  • Save ezyang/dcd5ab74d07797c3119beb0a20dcf68f to your computer and use it in GitHub Desktop.

Select an option

Save ezyang/dcd5ab74d07797c3119beb0a20dcf68f to your computer and use it in GitHub Desktop.
person(alice; bob; carol; david).
number(alice, 2).
number(bob, 3).
number(carol, 5).
number(david, 7).
distinct(A, B, C, D)
:- number(A, NA), number(B, NB), number(C, NC), number(D, ND),
NA * NB * NC * ND = 210.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment