You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ During [my experiments in Prolog with Java](https://github.com/raydac/jprol), I
14
14
It supports
15
15
- prolog operators
16
16
- line and block commentaries
17
-
- underline splitted numbers
17
+
- underline split numbers
18
18
- curly blocks
19
19
20
20
# Maven dependency
21
21
22
22
The parser is a pure Java library without any 3-th side dependency, it is published im the Maven central and can be injected into project just by adding:
23
-
```
23
+
```xml
24
24
<dependency>
25
25
<groupId>com.igormaznitsa</groupId>
26
26
<artifactId>java-prolog-parser</artifactId>
@@ -30,7 +30,7 @@ The parser is a pure Java library without any 3-th side dependency, it is publis
30
30
31
31
# How to use?
32
32
Parser implements stream which sequentially reads prolog terms provided by reader. By default, PrologParser is abstract class but there is pre-defined implementation GenericPrologParser for common cases.
33
-
```
33
+
```java
34
34
Reader reader =newStringReader("hello(world). some({1,2,3}). power(X,Y,Z) :- Z is X ** Y.");
0 commit comments