File tree 1 file changed +28
-0
lines changed
1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -16,22 +16,50 @@ The following are examples of using the leansearch API. The search is triggered
16
16
17
17
### Query Command
18
18
19
+ For ` leansearch ` :
20
+
19
21
``` lean
20
22
#leansearch "If a natural number n is less than m, then the successor of n is less than the successor of m."
21
23
```
22
24
25
+ For ` moogle ` :
26
+
27
+ ``` lean
28
+ #moogle "If a natural number n is less than m, then the successor of n is less than the successor of m."
29
+ ```
30
+
31
+
23
32
### Query Term
24
33
34
+ For ` leansearch ` :
35
+
25
36
``` lean
26
37
example := #leansearch "If a natural number n is less than m, then the successor of n is less than the successor of m."
27
38
```
28
39
40
+ For ` moogle ` :
41
+
42
+ ``` lean
43
+ example := #moogle "If a natural number n is less than m, then the successor of n is less than the successor of m."
44
+ ```
45
+
46
+
29
47
### Query Tactic
30
48
31
49
Note that only valid tactics are displayed.
32
50
51
+ For ` leansearch ` :
52
+
33
53
``` lean
34
54
example : 3 ≤ 5 := by
35
55
#leansearch "If a natural number n is less than m, then the successor of n is less than the successor of m."
36
56
sorry
37
57
```
58
+
59
+ For ` moogle ` :
60
+
61
+ ``` lean
62
+ example : 3 ≤ 5 := by
63
+ #moogle "If a natural number n is less than m, then the successor of n is less than the successor of m."
64
+ sorry
65
+ ```
You can’t perform that action at this time.
0 commit comments