forked from kevinsullivan/cs2120f24
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.lean
55 lines (43 loc) · 1.76 KB
/
Main.lean
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
49
50
51
52
53
54
55
/-
Tianle determined that on Windows, this main file needs to import
everything that «Cs2120f24».lean
-/
import Cs2120f24
/-
-- LECTURE FILES
-- propositional logic
import «Cs2120f24».Lectures.«02_prop_logic».formal.utilities
import «Cs2120f24».Lectures.«02_prop_logic».formal.domain
import «Cs2120f24».Lectures.«02_prop_logic».formal.syntax
import «Cs2120f24».Lectures.«02_prop_logic».formal.interpretation
import «Cs2120f24».Lectures.«02_prop_logic».formal.semantics
-- natural number
import «Cs2120f24».Lectures.«02_prop_logic».formal.model_theory.properties
import «Cs2120f24».Lectures.«02_prop_logic».formal.model_theory.models
import «Cs2120f24».Lectures.«02_prop_logic».formal.model_theory.counterexamples
-- LIBRARY FILES
-- Propositional logic
import «Cs2120f24».Library.propLogic.utilities
import «Cs2120f24».Library.propLogic.domain
import «Cs2120f24».Library.propLogic.syntax
import «Cs2120f24».Library.propLogic.interpretation
import «Cs2120f24».Library.propLogic.semantics
-- Propositional logic model theory
import «Cs2120f24».Library.propLogic.model_theory.truth_table
import «Cs2120f24».Library.propLogic.model_theory.properties
import «Cs2120f24».Library.propLogic.model_theory.models
import «Cs2120f24».Library.propLogic.model_theory.counterexamples
-/
-- Natural number arithmetic
-- import «Cs2120f24».Library.natArithmetic.semantics
-- import «Cs2120f24».Library.natArithmetic.domain
-- import «Cs2120f24».Library.natArithmetic.syntax
/-
-- Propositional with natural number arithmetic
import «Cs2120f24».Library.propLogicWithArith.syntax
import «Cs2120f24».Library.propLogicWithArith.domain
import «Cs2120f24».Library.propLogicWithArith.semantics
-/
def main : IO Unit :=
IO.println s!"Hi!"
#eval main