Lecture-02-Prolog-Introduction.pdf

🖋 Notes

Prolog language

Intro

Prolog Program

Elements of the SWI-Prolog language

Term

  1. Simple:

    1. constant
      • symbol
        • sequence of letters, numbers, …
        • start with a lowercase letter
      • number
        • integer, real (number)
      • string
        • 'text' (character: 'c', '\t', ...)
      • special characters
            • / <> =:. & _ ~

    ATOM = SYMBOL + NUMBER + STRING + SPECIAL-CHARACTERS + [] (empty list)

  2. variable

    1. sequence of letters, number starting with a capital letter
    2. the anonymous variable is represented by the underline character (_)
  3. Compound: