diff options
| author | Fuwn <[email protected]> | 2022-03-14 16:38:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-14 16:38:57 -0700 |
| commit | 4cda74d8101837b9d715863d1911daa7f58a050a (patch) | |
| tree | c94c801beb87934e29a33eec2ef6bb424ca39bfd | |
| parent | Merge branch 'main' of https://github.com/senpy-club/senpy-ffi (diff) | |
| download | senpy-ffi-4cda74d8101837b9d715863d1911daa7f58a050a.tar.xz senpy-ffi-4cda74d8101837b9d715863d1911daa7f58a050a.zip | |
docs: document julia example
| -rw-r--r-- | Makefile.toml | 6 | ||||
| -rw-r--r-- | README.rst | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml index edec93a..735e2f9 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -54,3 +54,9 @@ workspace = false dependencies = ["checkfc", "build"] command = "php" args = ["examples/ffi.php"] + +[tasks.ffi_julia] +workspace = false +dependencies = ["checkfc", "build"] +command = "julia" +args = ["examples/ffi.jl"] @@ -43,6 +43,7 @@ Usage Examples $ luvit examples/ffi.lua $ perl examples/ffi.pl $ php examples/ffi.php + $ julia examples/ffi.jl Examples -------- |