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
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ Mostly quality-of-life improvements, especially when handling arrays.
61
61
* Linux / WSL supports only
62
62
* Windows dynamic library linking is different than Linux.
63
63
* If you need Windows support, consider opening an issue or a PR :).
64
+
* Otherwise, just use WSL
64
65
65
66
# Examples
66
67
@@ -77,19 +78,19 @@ echo res # 2.0
77
78
78
79
```
79
80
80
-
## New in version 0.7.0
81
+
## New in version 0.7.4
81
82
82
-
It is now possible to embed Julia files inside a Nim compiled binary to easily distribute Julia code. To make distribution possible, an API to call ``Pkg.add("...")`` has also been added.
83
+
It is now possible to embed Julia files inside a Nim compiled binary to easily distribute Julia code. To make distribution possible, an API to call ``Pkg.add("...")`` has also been added**with version number easy to specify**.
83
84
84
85
```nim
85
86
import nimjl
86
87
87
88
Julia.init:
88
89
Pkg:
90
+
add(name="Polynomials", version="3.0.0")
91
+
add(name="LinearAlgebra")
89
92
add("DSP")
90
-
add("Wavelets")
91
-
add("LinearAlgebra")
92
-
add("Statistics")
93
+
add(name="Wavelets", version="0.9.4")
93
94
94
95
Embed:
95
96
# embed all files with '*.jl' extension in folder ``JuliaToolBox/``
0 commit comments