Skip to content

Commit 30aad50

Browse files
authored
fixed README
1 parent 311e3f0 commit 30aad50

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
#Julia for Java binding
1+
# Julia for Java binding
22

33
This is initial Java binding implementation.
44
For now there are supported only basic functions
55
for running scripts and types converting.
66

77
See https://docs.julialang.org/en/stable/manual/embedding/
88

9-
Class org.julia.jni.swig.Julia4J implements JNI calls to libjulia. See [example](src/test/java/Class org.julia.jni.swig.Julia4J implements JNI calls to libjulia. See [example](src/test/java/Class org.julia.jni.swig.Julia4J implements JNI calls to libjulia. See [example](src/test/java/Julia4JNITest.java)
9+
Class org.julia.jni.swig.Julia4J implements JNI calls to libjulia. See [example](src/test/java/Julia4JJNITest.java)
1010

1111
Classes from package class org.julia.scripting implement jsr233 scripting interface. See [example](src/test/java/Julia4JScriptingTest.java)
1212

13-
###Examples
13+
### Examples
1414

1515
Example 1:
1616
```java
@@ -65,19 +65,19 @@ engine.eval("println(x);", newContext);
6565

6666
// example from https://docs.oracle.com/javase/7/docs/technotes/guides/scripting/programmer_guide/
6767
```
68-
###Prerequisites
68+
### Prerequisites
6969

7070
For running: julia should be installed.
7171

7272
For building with binaries: julia, julia-devel, Java 8, swig, gcc, make.
7373

74-
###How to build
74+
### How to build
7575
These sources doesn't include native binary libraries. But you can build them manually by [`swig/build.sh`](swig/build.sh) script.
7676
Also see [swig/lib_src/Makefile](swig/lib_src/Makefile)
7777

7878
Next run `./gradlew build`
7979

80-
###TODO
80+
### TODO
8181

8282
* automate native binaries building. For now the only Mac OS library building hardcoded
8383
* fix SWIG related class names like *SWIGTYPE_p_jl_value_t*

0 commit comments

Comments
 (0)