aboutsummaryrefslogtreecommitdiffstats
path: root/language-web/src/main/html/index.html
blob: 915234d3f763f0e0ef1afe1d02f0fdcf8272046c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Example Web Editor</title>
  </head>
  <body>
    <div class="container">
      <div class="header">
        <h1>Example Problem Web Editor</h1>
      </div>
      <div class="content">
        <div class="xtext-editor"><pre>class Family {
  contains Person[] members
}

class Person {
  Person[] children opposite parent
  Person[0..1] parent opposite children
  int age
  TaxStatus taxStatus
}

enum TaxStatus {
  child, student, adult, retired
}

% A child cannot have any dependents.
error invalidTaxStatus(Person p) :-
  taxStatus(p, child), children(p, _q).

Family('family').
members('family', anne).
members('family', bob).
members('family', ciri).
children(anne, ciri).
?children(bob, ciri).
taxStatus(anne, adult).
age(anne, 35).
bobAge: 27.
age(bob, bobAge).
!age(ciri, bobAge).

scope Family = 1, Person += 5..10.</pre></div>
      </div>
    </div>
  </body>
</html>