├── .github └── workflows │ └── jsource.yml ├── .gitignore ├── README.md ├── addons ├── arc │ └── zlib │ │ ├── history.txt │ │ ├── manifest.ijs │ │ ├── readme.txt │ │ └── zlib.ijs ├── config │ ├── addins.txt │ ├── addons.txt │ ├── config.ijs │ ├── lastupdate.txt │ ├── library.txt │ ├── release.txt │ ├── revision.txt │ ├── tree.txt │ └── zips.txt ├── general │ └── misc │ │ ├── bigfiles.ijs │ │ ├── clippaste.ijs │ │ ├── evolute.ijs │ │ ├── fndef.ijs │ │ ├── fndisplay.ijs │ │ ├── font.ijs │ │ ├── format.ijs │ │ ├── guid.ijs │ │ ├── ieee64.ijs │ │ ├── inverted.ijs │ │ ├── jdll.ijs │ │ ├── manifest.ijs │ │ ├── numeric.ijs │ │ ├── pack.ijs │ │ ├── parts.ijs │ │ ├── prompt.ijs │ │ ├── test_bigfiles.ijs │ │ ├── test_clippaste.ijs │ │ ├── trace.ijs │ │ └── validate.ijs ├── graphics │ ├── afm │ │ ├── afm.ijs │ │ ├── history.txt │ │ └── manifest.ijs │ ├── bmp │ │ ├── bmp.ijs │ │ ├── history.txt │ │ ├── jbox.bmp │ │ ├── manifest.ijs │ │ └── toucan.bmp │ ├── color │ │ ├── color.txt │ │ ├── color16.ijs │ │ ├── colorcss.ijs │ │ ├── colortab.html │ │ ├── colortab.ijs │ │ ├── colorx256.html │ │ ├── colorx256.ijs │ │ ├── html.ijs │ │ ├── hues.ijs │ │ ├── manifest.ijs │ │ ├── rgb.ijs │ │ ├── showcolor.ijs │ │ └── xwin.ijs │ ├── plot │ │ ├── jzplot.ijs │ │ ├── manifest.ijs │ │ ├── plot.ijs │ │ └── plotdefs.ijs │ ├── png │ │ ├── manifest.ijs │ │ ├── png.ijs │ │ └── test │ │ │ └── test1.ijs │ └── viewmat │ │ ├── history.txt │ │ ├── manifest.ijs │ │ └── viewmat.ijs ├── math │ └── misc │ │ ├── amoeba.ijs │ │ ├── bigpi.ijs │ │ ├── brent.ijs │ │ ├── build.ijs │ │ ├── cheby.ijs │ │ ├── contfrac.ijs │ │ ├── det.ijs │ │ ├── fermat.ijs │ │ ├── gamesolver.ijs │ │ ├── gcd.ijs │ │ ├── integer.ijs │ │ ├── integrat.ijs │ │ ├── jacobi.ijs │ │ ├── legendre.ijs │ │ ├── linear.ijs │ │ ├── makemat.ijs │ │ ├── manifest.ijs │ │ ├── matfacto.ijs │ │ ├── mathutil.ijs │ │ ├── matutil.ijs │ │ ├── mean.ijs │ │ ├── numbers.ijs │ │ ├── odeint.ijs │ │ ├── pollard.ijs │ │ ├── poly.ijs │ │ ├── primutil.ijs │ │ ├── quatern.ijs │ │ ├── rsa.ijs │ │ ├── simplex.ijs │ │ ├── simplexnr.ijs │ │ ├── spline.ijs │ │ ├── svd.ijs │ │ └── trig.ijs └── stats │ └── base │ ├── base.ijs │ ├── combinatorial.ijs │ ├── distribution.ijs │ ├── manifest.ijs │ ├── multivariate.ijs │ ├── random.ijs │ └── univariate.ijs ├── android ├── jni │ ├── Android.mk │ └── Application.mk ├── readme └── release-android.sh ├── asm ├── asm.txt ├── asm64 ├── asm64noovf.c ├── asm64noovf.s ├── copy_obj ├── create_asm_source ├── d.c ├── d.s ├── fix_overflow.ijs ├── linuxasm64.o ├── linuxasm64.s └── macasm64.o ├── base64 ├── LICENSE ├── include │ └── libbase64.h └── lib │ ├── arch │ ├── avx │ │ └── codec-avx.c │ ├── avx2 │ │ ├── codec-avx2.c │ │ ├── dec_loop.c │ │ ├── dec_reshuffle.c │ │ ├── enc_loop.c │ │ ├── enc_reshuffle.c │ │ └── enc_translate.c │ ├── generic │ │ ├── 32 │ │ │ ├── dec_loop.c │ │ │ └── enc_loop.c │ │ ├── 64 │ │ │ └── enc_loop.c │ │ ├── codec-generic.c │ │ ├── dec_head.c │ │ ├── dec_tail.c │ │ ├── enc_head.c │ │ └── enc_tail.c │ ├── neon64 │ │ ├── codec-neon64.c │ │ ├── dec_loop.c │ │ ├── enc_loop.c │ │ └── enc_reshuffle.c │ ├── sse41 │ │ └── codec-sse41.c │ ├── sse42 │ │ └── codec-sse42.c │ └── ssse3 │ │ ├── codec-ssse3.c │ │ ├── dec_loop.c │ │ ├── dec_reshuffle.c │ │ ├── enc_loop.c │ │ ├── enc_reshuffle.c │ │ └── enc_translate.c │ ├── codec_choose.c │ ├── codecs.h │ ├── config.h │ ├── env.h │ ├── lib.c │ ├── lib_openmp.c │ └── tables │ ├── table_dec_32bit.h │ ├── table_enc_12bit.h │ ├── tables.c │ └── tables.h ├── benchmark └── avx.ijs ├── bin ├── html │ ├── app.js │ ├── emj.data │ ├── emj.html │ ├── emj.ijs │ ├── emj.js │ ├── emj.wasm │ ├── index.html │ ├── normalize.css │ ├── viewport-fix.css │ └── viewport-fix.js └── html2 │ ├── about.js │ ├── base.css │ ├── codemirror │ ├── LICENSE │ ├── active-line.js │ ├── autorefresh.js │ ├── codemirror.css │ ├── codemirror.js │ ├── j.js │ └── matchbrackets.js │ ├── doc.txt │ ├── edit.js │ ├── emj.data │ ├── emj.ijs │ ├── emj.js │ ├── emj.wasm │ ├── examples.js │ ├── favicon.ico │ ├── help.js │ ├── images │ ├── jgreen.png │ └── loading.gif │ ├── index.html │ ├── indexdist.html │ ├── layout.js │ ├── localj.js │ ├── log.js │ ├── menu.js │ ├── pane.js │ ├── popup.js │ ├── start.js │ ├── tbar.js │ ├── term.js │ ├── test.ijs │ ├── util.js │ ├── utildev.js │ └── version.txt ├── dllsrc ├── jcedll.def ├── jdll.c ├── jdll.def ├── jdll.h ├── jdll.rc ├── jdll.tlb ├── jdll2.def ├── jdll_original.tlb ├── jdll_rebuilt_from_old_source.tlb ├── jdllcom.h ├── jdllcomx.cpp ├── jdlltype.h └── jexe.h ├── hostdefs ├── Hostdefs-nopie.mk ├── Hostdefs.mk ├── hostdefs.c └── hostdefs_win32.ijs ├── jlibrary ├── addons │ ├── data │ │ ├── jfiles │ │ │ ├── history.txt │ │ │ ├── jfiles.ijs │ │ │ ├── jfiles.txt │ │ │ ├── keyfiles.txt │ │ │ ├── manifest.ijs │ │ │ └── test │ │ │ │ ├── test0.ijs │ │ │ │ └── test1.ijs │ │ └── jmf │ │ │ ├── history.txt │ │ │ ├── jmf.ijs │ │ │ ├── manifest.ijs │ │ │ └── test │ │ │ ├── testdata.ijs │ │ │ └── testjmf.ijs │ └── dev │ │ ├── fold │ │ ├── fold.ijs │ │ ├── foldr.ijs │ │ └── manifest.ijs │ │ └── lu │ │ ├── lu.ijs │ │ └── manifest.ijs ├── bin │ └── profile.ijs ├── copy_library_from_current.bat ├── system │ ├── config │ │ ├── base.cfg │ │ └── folders.cfg │ ├── defs │ │ ├── hostdefs_aix.ijs │ │ ├── hostdefs_android.ijs │ │ ├── hostdefs_android_64.ijs │ │ ├── hostdefs_darwin.ijs │ │ ├── hostdefs_darwin_64.ijs │ │ ├── hostdefs_linux.ijs │ │ ├── hostdefs_linux_64.ijs │ │ ├── hostdefs_sunos.ijs │ │ ├── hostdefs_win.ijs │ │ ├── hostdefs_win_64.ijs │ │ ├── netdefs_aix.ijs │ │ ├── netdefs_android.ijs │ │ ├── netdefs_android_64.ijs │ │ ├── netdefs_darwin.ijs │ │ ├── netdefs_darwin_64.ijs │ │ ├── netdefs_linux.ijs │ │ ├── netdefs_linux_64.ijs │ │ ├── netdefs_sunos.ijs │ │ ├── netdefs_win.ijs │ │ └── netdefs_win_64.ijs │ ├── main │ │ ├── regex.ijs │ │ ├── socket.ijs │ │ ├── stdlib.ijs │ │ └── task.ijs │ └── util │ │ ├── boot.ijs │ │ ├── configure.ijs │ │ ├── pacman.ijs │ │ ├── pm.ijs │ │ ├── pp.ijs │ │ ├── project.ijs │ │ ├── scripts.ijs │ │ └── tar.ijs └── tools │ ├── ftp │ ├── busybox.exe │ ├── busybox_license.txt │ ├── license.txt │ └── wget.exe │ └── regex │ └── readme.txt ├── jsrc ├── Android.mk ├── Jconsole-nopie.mk ├── Jconsole.mk ├── Jnative.mk ├── Tsdll.mk ├── a.c ├── a.h ├── ab.c ├── aes-arm.c ├── aes-arm_table.h ├── aes-c.c ├── aes-c.h ├── aes-ni.c ├── aes-sse2.c ├── af.c ├── ai.c ├── am.c ├── am1.c ├── amn.c ├── andjnative.c ├── ao.c ├── ap.c ├── ar.c ├── ar.h ├── as.c ├── au.c ├── avx2intrin-emu.h ├── avxintrin-emu.h ├── avxintrin-neon.h ├── blis.h ├── blis │ ├── gemm_c-ref.c │ ├── gemm_int-aarch64.c │ ├── gemm_int-avx.c │ ├── gemm_int-fma.c │ ├── gemm_int-sse2.c │ └── gemm_vec-ref.c ├── c.c ├── ca.c ├── cc.c ├── cd.c ├── cf.c ├── cg.c ├── ch.c ├── cip.c ├── cip_t.h ├── cipfloatmm_t.h ├── cl.c ├── codingrules.txt ├── com_jsoftware_j_JInterface.h ├── cp.c ├── cpdtsp.c ├── cpuinfo.c ├── cpuinfo.h ├── cr.c ├── cr_t.h ├── crc32c.c ├── crc32c.h ├── crc32ctables.h ├── crs.c ├── ct.c ├── cu.c ├── cv.c ├── cx.c ├── d.c ├── d.h ├── dc.c ├── dss.c ├── dstop.c ├── dsusp.c ├── dtoa.c ├── dtoa.h ├── emj.c ├── extra.js ├── f.c ├── f2.c ├── fbu.c ├── fnmatch.c ├── fnmatch.h ├── gemm.c ├── gemm.h ├── i.c ├── io.c ├── j.c ├── j.h ├── ja.h ├── jc.h ├── jconsole.c ├── jdlllic.c ├── je.h ├── jeload.c ├── jeload.h ├── jep.c ├── jerr.h ├── jfex.c ├── jfex.h ├── jlib.h ├── js.h ├── jt.h ├── jtype.h ├── jversion-x.h ├── jversion.h ├── jx_utils_jnative.h ├── k.c ├── linenoise.c ├── linenoise.h ├── m.c ├── m.h ├── makefile.html ├── makefile.linux ├── makefile.tests ├── makefile.wasmer ├── mbx.c ├── openssl │ └── sha │ │ ├── README.txt │ │ ├── asm │ │ ├── arm_arch.h │ │ ├── keccak1600-armv4-elf.S │ │ ├── keccak1600-armv8-elf.S │ │ ├── keccak1600-armv8-ios.S │ │ ├── keccak1600-mmx-elf.S │ │ ├── keccak1600-mmx-elf32.S │ │ ├── keccak1600-mmx-macho.S │ │ ├── keccak1600-mmx-masm.asm │ │ ├── keccak1600-mmx-nasm.asm │ │ ├── keccak1600-x86_64-elf.S │ │ ├── keccak1600-x86_64-macho.S │ │ ├── keccak1600-x86_64-masm.asm │ │ ├── keccak1600-x86_64-nasm.asm │ │ ├── md5-586-elf.S │ │ ├── md5-586-masm.asm │ │ ├── md5-586-nasm.asm │ │ ├── md5-asm.sh │ │ ├── md5-x86_64-elf.S │ │ ├── md5-x86_64-masm.asm │ │ ├── md5-x86_64-nasm.asm │ │ ├── nasm-build.sh │ │ ├── sha-asm.sh │ │ ├── sha1-586-elf.S │ │ ├── sha1-586-macho.S │ │ ├── sha1-586-masm.asm │ │ ├── sha1-586-nasm.asm │ │ ├── sha1-armv4-elf.S │ │ ├── sha1-armv8-elf.S │ │ ├── sha1-armv8-ios.S │ │ ├── sha1-x86_64-elf.S │ │ ├── sha1-x86_64-macho.S │ │ ├── sha1-x86_64-masm.asm │ │ ├── sha1-x86_64-nasm.asm │ │ ├── sha256-586-elf.S │ │ ├── sha256-586-macho.S │ │ ├── sha256-586-masm.asm │ │ ├── sha256-586-nasm.asm │ │ ├── sha256-armv4-elf.S │ │ ├── sha256-armv8-elf.S │ │ ├── sha256-armv8-ios.S │ │ ├── sha256-x86_64-elf.S │ │ ├── sha256-x86_64-macho.S │ │ ├── sha256-x86_64-masm.asm │ │ ├── sha256-x86_64-nasm.asm │ │ ├── sha512-586-elf.S │ │ ├── sha512-586-macho.S │ │ ├── sha512-586-masm.asm │ │ ├── sha512-586-nasm.asm │ │ ├── sha512-armv4-elf.S │ │ ├── sha512-armv8-elf.S │ │ ├── sha512-armv8-ios.S │ │ ├── sha512-x86_64-elf.S │ │ ├── sha512-x86_64-macho.S │ │ ├── sha512-x86_64-masm.asm │ │ └── sha512-x86_64-nasm.asm │ │ ├── keccak1600.c │ │ ├── md32_common.h │ │ ├── md4.h │ │ ├── md4_dgst.c │ │ ├── md4_locl.h │ │ ├── md4_one.c │ │ ├── md5.h │ │ ├── md5_dgst.c │ │ ├── md5_locl.h │ │ ├── md5_one.c │ │ ├── open_software_license.txt │ │ ├── openssl-util.c │ │ ├── openssl.h │ │ ├── sha.h │ │ ├── sha1_one.c │ │ ├── sha256.c │ │ ├── sha3.c │ │ ├── sha3.h │ │ ├── sha512.c │ │ └── sha_locl.h ├── p.c ├── p.h ├── pv.c ├── px.c ├── r.c ├── result.h ├── rl.c ├── rt.c ├── s.c ├── s.h ├── sc.c ├── sl.c ├── sn.c ├── sse2neon.h ├── sse2neon2.h ├── t.c ├── tags.txt ├── tsdll.c ├── u.c ├── v.c ├── v0.c ├── v1.c ├── v2.c ├── va.h ├── va1.c ├── va1ss.c ├── va2.c ├── va2s.c ├── va2ss.c ├── vamultsp.c ├── vasm.h ├── vb.c ├── vbang.c ├── vbit.c ├── vcant.c ├── vcat.c ├── vcatsp.c ├── vchar.c ├── vcomp.c ├── vcomp.h ├── vcompsc.c ├── vd.c ├── vdx.c ├── vdx.h ├── ve.c ├── ve.h ├── vf.c ├── vfft.c ├── vfrom.c ├── vfromsp.c ├── vg.c ├── vg.h ├── vgauss.c ├── vgcomp.c ├── vgmerge.h ├── vgmergemincomp.h ├── vgranking.c ├── vgsort.c ├── vgsort.h ├── vgsortq.h ├── vgsp.c ├── vi.c ├── viavx.c ├── viix.c ├── visp.c ├── vm.c ├── vo.c ├── vp.c ├── vq.c ├── vq.h ├── vrand.c ├── vrep.c ├── vs.c ├── vsb.c ├── vt.c ├── vu.c ├── vx.c ├── vx.h ├── vz.c ├── vz.h ├── w.c ├── w.h ├── wasm_stubs.h ├── wc.c ├── wn.c ├── ws.c ├── x.c ├── x.h ├── x15.c ├── xa.c ├── xaes.c ├── xb.c ├── xc.c ├── xc.h ├── xcrc.c ├── xd.c ├── xf.c ├── xfmt.c ├── xh.c ├── xi.c ├── xl.c ├── xo.c ├── xs.c ├── xsha.c ├── xt.c └── xu.c ├── labs ├── averages.ijt ├── bestfit.ijt ├── bincoefs.ijt ├── build_labs.sh ├── coleman.ijt ├── compositions.ijt ├── display.ijt ├── dllbasic.ijt ├── dllcallback.ijt ├── dllcallback_win.ijt ├── dllwin32.ijt ├── families.ijt ├── fntab.ijt ├── frame.ijt ├── groups.ijt ├── huffman.ijt ├── intro.ijt ├── iter.ijt ├── jtaste2.ijt ├── labs805.ijs ├── mathroot.ijt ├── monad.ijt ├── polynom.ijt ├── pythag3.ijt ├── seqmachine.ijt ├── shapley.ijt ├── sparse.ijt ├── special_searches.ijt ├── tables.ijt ├── towerofhanoi.ijt ├── tte.ijt └── volume.ijt ├── labs_labs ├── LICENSE ├── build.ijs ├── core │ ├── compositions.ijt │ ├── display.ijt │ ├── example.csv │ ├── fivenum.csv │ ├── intro.ijt │ ├── introcourse.ijt │ ├── j.ijt │ ├── jclick1.ijt │ ├── jclickbeginners.ijt │ ├── jpcfmt.ijs │ ├── jtaste1.ijt │ ├── jtaste2.ijt │ ├── locales.ijt │ ├── lorem.txt │ ├── monad.ijt │ ├── oop.ijt │ ├── sparse.ijt │ └── splitcsv.ijs ├── debug │ ├── dissect1.ijt │ ├── dissect2.ijt │ ├── jig.ijt │ └── tte.ijt ├── examples │ ├── data │ │ ├── 58csom.dat │ │ ├── 80csom.dat │ │ ├── actables.ijf │ │ ├── addr.dbf │ │ ├── cities.dat │ │ ├── country.ijs │ │ ├── data.txt │ │ ├── datename.ijs │ │ ├── dept.dbf │ │ ├── dm0396.txt │ │ ├── emp.dbf │ │ ├── emp.dbt │ │ ├── emp.inf │ │ ├── empdept.ndx │ │ ├── emphire.ndx │ │ ├── emplname.ndx │ │ ├── expense.xls │ │ ├── globe.ico │ │ ├── isitbar8.bmp │ │ ├── j.bmp │ │ ├── j.ico │ │ ├── jb.ico │ │ ├── jblob.db │ │ ├── jblob.mdb │ │ ├── jbox.bmp │ │ ├── jbox.png │ │ ├── jbw.bmp │ │ ├── jdata.db │ │ ├── jdata.mdb │ │ ├── jdata.xls │ │ ├── jdll.h │ │ ├── jr.ico │ │ ├── jr4.rtf │ │ ├── jy.ico │ │ ├── loc.dbf │ │ ├── loc.inf │ │ ├── messier.xls │ │ ├── orders.prn │ │ ├── rtf.txt │ │ ├── sales.dat │ │ ├── stdtbar.bmp │ │ ├── table.dat │ │ ├── tdat2.prn │ │ ├── tdata.csv │ │ ├── tdata.dat │ │ ├── tdata.dbf │ │ ├── tdata.prn │ │ ├── toolbar.bmp │ │ ├── toolbar.gif │ │ ├── toucan.bmp │ │ └── toucan.png │ ├── dllwrite │ │ ├── build.bat │ │ ├── dlltest.c │ │ ├── dlltest.def │ │ ├── dlltest.dll │ │ ├── makefile_linux │ │ ├── makefile_macos │ │ └── makefile_win │ ├── print │ │ ├── alice.txt │ │ ├── jeltz.txt │ │ └── prints.txt │ └── socket │ │ ├── client.ijs │ │ ├── clifns.ijs │ │ ├── server.ijs │ │ ├── serverw.ijs │ │ ├── servfns.ijs │ │ ├── servfnsw.ijs │ │ ├── socket.txt │ │ └── socklab.ijs ├── exlabs.txt ├── general │ ├── circuittheoryi.ijt │ ├── circuittheoryii.ijt │ ├── fuzzy.ijt │ ├── huffman.ijt │ ├── jturtleuser.ijt │ ├── nn1.ijt │ ├── seqmachine.ijt │ └── towerofhanoi.ijt ├── graphics │ ├── d3.ijt │ ├── fractals.ijt │ ├── gl2.ijt │ ├── graphut.ijt │ ├── plot.ijt │ ├── plotjhs.ijt │ └── viewmat.ijt ├── lab.ijs ├── labdir.ijs ├── labintro.txt ├── labs.ijs ├── labs.jproj ├── labs805.ijs ├── livetexts │ ├── arithmetic.ijt │ ├── candg.ijt │ ├── coleman.ijt │ ├── finitemath.ijt │ ├── grade8-7.ijt │ └── linearalgebra.ijt ├── manifest.ijs ├── math │ ├── area.ijt │ ├── averages.ijt │ ├── bestfit.ijt │ ├── bincoefs.ijt │ ├── catalan.ijt │ ├── families.ijt │ ├── fntab.ijt │ ├── frame.ijt │ ├── groups.ijt │ ├── iter.ijt │ ├── mathroot.ijt │ ├── polynom.ijt │ ├── pythag3.ijt │ ├── rot.ijt │ ├── shapley.ijt │ ├── spiral.ijt │ ├── tables.ijt │ ├── teachersaide.ijt │ └── volume.ijt ├── run.ijs ├── source │ ├── run │ │ ├── build.ijs │ │ ├── chapter.ijs │ │ ├── fini.ijs │ │ ├── init.ijs │ │ ├── labintro.ijs │ │ ├── main.ijs │ │ ├── open.ijs │ │ ├── parse.ijs │ │ ├── run.ijs │ │ ├── run.jproj │ │ ├── simple.ijs │ │ └── util.ijs │ └── run805 │ │ ├── build.ijs │ │ ├── dict.txt │ │ ├── init.ijs │ │ ├── labfiles.ijs │ │ ├── labini.ijs │ │ ├── labjmp.ijs │ │ ├── labopt.ijs │ │ ├── labreset.ijs │ │ ├── labsel.ijs │ │ ├── labutil.ijs │ │ ├── run.ijs │ │ ├── run805.jproj │ │ └── test.ijs └── system │ ├── client_server.ijt │ ├── debug.ijt │ ├── dllbasic.ijt │ ├── dllcallback.ijt │ ├── dllcallback_win.ijt │ ├── dllwin32.ijt │ ├── dllwrite.ijt │ ├── files.ijt │ ├── mapfile.ijt │ ├── mappeddb.ijs │ ├── mappeddb.ijt │ ├── odbcblob.ijt │ ├── odbcint.ijt │ ├── odbcinv.ijt │ ├── odbcsap.ijt │ ├── pm.ijt │ ├── printf.ijt │ ├── regex.ijt │ ├── sockcli.ijt │ ├── sockinet.ijt │ ├── sockserv.ijt │ └── special_searches.ijt ├── libedit └── libedit.a ├── license.txt ├── make2 ├── build_all.sh ├── build_jconsole.sh ├── build_jnative.sh ├── build_libj.sh ├── build_tsdll.sh ├── clean.sh ├── cpbin.sh ├── macos-libomp.txt ├── make.txt ├── makefile-jconsole ├── makefile-jnative ├── makefile-libj └── makefile-tsdll ├── make_deprecated ├── build_all.sh ├── build_jconsole.sh ├── build_jnative.sh ├── build_libj.sh ├── build_tsdll.sh ├── clean.sh ├── comments.txt ├── copy_jlibrary.sh ├── domake.sh ├── install.sh ├── jvars.sh ├── make.txt ├── makefile └── run_tests.sh ├── makemsvc ├── jconsole │ ├── makefile │ └── makefile.win ├── jdll │ ├── makefile │ └── makefile.win ├── jnative │ ├── jnative.def │ ├── makefile │ └── makefile.win ├── makemsvc.txt ├── release.bat ├── release.sh └── tsdll │ ├── makefile │ └── makefile.win ├── makevs ├── copy_jlibrary.bat ├── install.bat ├── jconsole │ ├── jconsole.rc │ ├── jgray.ico │ ├── profile.ijs │ ├── resource.h │ ├── resource1.h │ └── template │ │ ├── .gitignore │ │ ├── jconsole_vs2013.sln │ │ ├── jconsole_vs2013.vcxproj │ │ ├── jconsole_vs2013.vcxproj.user │ │ ├── jconsole_vs2019.sln │ │ ├── jconsole_vs2019.vcxproj │ │ ├── jconsole_vs2019.vcxproj.user │ │ ├── jconsole_vs2019_clang.sln │ │ ├── jconsole_vs2019_clang.vcxproj │ │ └── jconsole_vs2019_clang.vcxproj.user ├── jdll │ ├── profile.ijs │ └── template │ │ ├── .gitignore │ │ ├── jdll_vs2013.sln │ │ ├── jdll_vs2013.vcxproj │ │ ├── jdll_vs2013.vcxproj.user │ │ ├── jdll_vs2019.sln │ │ ├── jdll_vs2019.vcxproj │ │ ├── jdll_vs2019.vcxproj.user │ │ ├── jdll_vs2019_clang.sln │ │ ├── jdll_vs2019_clang.vcxproj │ │ └── jdll_vs2019_clang.vcxproj.user ├── makevs.txt ├── midl │ ├── build.bat │ ├── jdll.idl │ ├── jdll.odl │ ├── jdll.tlb │ ├── jdll_i.c │ ├── jdllidl.h │ ├── methods.odl │ └── tlb.txt ├── release.bat ├── template.bat ├── templates.ijs └── tsdll │ ├── template │ ├── .gitignore │ ├── tsdll_vs2013.sln │ ├── tsdll_vs2013.vcxproj │ ├── tsdll_vs2013.vcxproj.user │ ├── tsdll_vs2019.sln │ ├── tsdll_vs2019.vcxproj │ ├── tsdll_vs2019.vcxproj.user │ ├── tsdll_vs2019_clang.sln │ ├── tsdll_vs2019_clang.vcxproj │ └── tsdll_vs2019_clang.vcxproj.user │ └── tsdll.def ├── netdefs ├── Netdefs-nopie.mk ├── Netdefs.mk ├── netdefs.c └── netdefs_win32.ijs ├── openmp └── obj │ └── windows │ ├── libomp.dll │ ├── libomp.lib │ └── libomp32.lib ├── openssl-asm ├── keccak1600-mmx-nasm.o ├── keccak1600-x86_64-nasm.o ├── sha1-586-nasm.o ├── sha1-x86_64-nasm.o ├── sha256-586-nasm.o ├── sha256-x86_64-nasm.o ├── sha512-586-nasm.o └── sha512-x86_64-nasm.o ├── overview.txt ├── script ├── build_test.ijs ├── buildga.cmd ├── buildga.sh ├── github_builds.txt ├── global_report.ijs ├── map_globals.sh ├── run_tests.ijs ├── tag.sh ├── testga.cmd ├── testga.ijs ├── testga.sh ├── testgares.sh └── ver.ijs ├── sleef ├── include │ └── sleef.h └── src │ ├── arch │ ├── avxintrin-emu.h │ ├── helperadvsimd.h │ ├── helperavx.h │ ├── helperavx2.h │ ├── helpersse2.h │ └── helpervecext.h │ ├── common │ ├── arraymap.c │ ├── arraymap.h │ ├── common.c │ ├── common.h │ └── misc.h │ └── libm │ ├── commonfuncs.h │ ├── dd.h │ ├── estrin.h │ ├── funcproto.h │ ├── importsample.h │ ├── norename.h │ ├── rempitab.c │ ├── rename.h │ ├── renameadvsimd.h │ ├── renameadvsimdnofma.h │ ├── renameavx.h │ ├── renameavx2.h │ ├── renamesse2.h │ ├── renamevecext.h │ └── sleefsimddp.c ├── source ├── base │ ├── base.jproj │ ├── build.ijs │ ├── init.ijs │ ├── pacman.ijs │ ├── run.ijs │ ├── util.ijs │ └── view.ijs ├── build.py ├── help │ ├── build.ijs │ ├── cname.ijs │ ├── help.ijs │ ├── help.jproj │ ├── indexnv.ijs │ ├── init.ijs │ ├── play.ijs │ └── run.ijs └── save │ ├── build.ijs │ ├── run.ijs │ └── save.jproj ├── test ├── g0.ijs ├── g000.ijs ├── g000a.ijs ├── g000i.ijs ├── g000p.ijs ├── g000s.ijs ├── g001.ijs ├── g010.ijs ├── g010a.ijs ├── g010i.ijs ├── g010p.ijs ├── g010s.ijs ├── g011.ijs ├── g011a.ijs ├── g011i.ijs ├── g011p.ijs ├── g011s.ijs ├── g012.ijs ├── g012a.ijs ├── g012i.ijs ├── g012p.ijs ├── g012s.ijs ├── g020.ijs ├── g020a.ijs ├── g020i.ijs ├── g020p.ijs ├── g020s.ijs ├── g021.ijs ├── g021a.ijs ├── g021i.ijs ├── g021p.ijs ├── g021s.ijs ├── g022.ijs ├── g022a.ijs ├── g022i.ijs ├── g022p.ijs ├── g022s.ijs ├── g030.ijs ├── g030a.ijs ├── g031.ijs ├── g032.ijs ├── g0a.ijs ├── g0x.ijs ├── g100.ijs ├── g100a.ijs ├── g100i.ijs ├── g100p.ijs ├── g100s.ijs ├── g101.ijs ├── g101a.ijs ├── g101i.ijs ├── g101p.ijs ├── g101s.ijs ├── g102.ijs ├── g102a.ijs ├── g102i.ijs ├── g102p.ijs ├── g102s.ijs ├── g110.ijs ├── g110a.ijs ├── g110i.ijs ├── g110p.ijs ├── g110s.ijs ├── g111.ijs ├── g111a.ijs ├── g111i.ijs ├── g111p.ijs ├── g111s.ijs ├── g112.ijs ├── g112a.ijs ├── g112i.ijs ├── g112p.ijs ├── g112s.ijs ├── g120.ijs ├── g120a.ijs ├── g120i.ijs ├── g120p.ijs ├── g120s.ijs ├── g121.ijs ├── g122.ijs ├── g122a.ijs ├── g128x.ijs ├── g128x3.ijs ├── g128x5.ijs ├── g128x6.ijs ├── g128x7.ijs ├── g130.ijs ├── g130a.ijs ├── g130i.ijs ├── g130p.ijs ├── g131.ijs ├── g132.ijs ├── g13x.ijs ├── g15x.ijs ├── g18x.ijs ├── g1x.ijs ├── g1x0.ijs ├── g1x1.ijs ├── g1x11.ijs ├── g1x12.ijs ├── g1x2.ijs ├── g1x20.ijs ├── g1x3.ijs ├── g1x30.ijs ├── g1x4.ijs ├── g1x43.ijs ├── g1x5.ijs ├── g1x55.ijs ├── g1x7.ijs ├── g200.ijs ├── g200a.ijs ├── g200i.ijs ├── g200m.ijs ├── g200p.ijs ├── g201.ijs ├── g202.ijs ├── g202b.ijs ├── g210.ijs ├── g210a.ijs ├── g211.ijs ├── g212.ijs ├── g220.ijs ├── g220t.ijs ├── g221.ijs ├── g222.ijs ├── g222a.ijs ├── g222i.ijs ├── g222p.ijs ├── g222s.ijs ├── g230.ijs ├── g230a.ijs ├── g230i.ijs ├── g230p.ijs ├── g230s.ijs ├── g231.ijs ├── g232.ijs ├── g2x.ijs ├── g300.ijs ├── g300b.ijs ├── g300t.ijs ├── g301.ijs ├── g310.ijs ├── g310a.ijs ├── g310names.ijs ├── g310r.ijs ├── g310t.ijs ├── g311.ijs ├── g312.ijs ├── g320.ijs ├── g320ip.ijs ├── g320ipt.ijs ├── g321.ijs ├── g321t.ijs ├── g322.ijs ├── g330.ijs ├── g330f.ijs ├── g330t.ijs ├── g331.ijs ├── g331bx.ijs ├── g331col.ijs ├── g331ins.ijs ├── g331ps.ijs ├── g331sp.ijs ├── g332.ijs ├── g332s.ijs ├── g3x.ijs ├── g3x4.ijs ├── g3x5.ijs ├── g3x6.ijs ├── g400.ijs ├── g400e.ijs ├── g401.ijs ├── g402.ijs ├── g410.ijs ├── g410a.ijs ├── g410i.ijs ├── g410p.ijs ├── g410s.ijs ├── g411.ijs ├── g412.ijs ├── g420.ijs ├── g420ce.ijs ├── g420fg.ijs ├── g420r2.ijs ├── g420stch.ijs ├── g420t.ijs ├── g421.ijs ├── g421c.ijs ├── g421d.ijs ├── g421e.ijs ├── g421i.ijs ├── g421p.ijs ├── g421t.ijs ├── g422.ijs ├── g422os.ijs ├── g422rk.ijs ├── g422sort.ijs ├── g422sort1.ijs ├── g422tao.ijs ├── g430.ijs ├── g430a2.ijs ├── g430avg.ijs ├── g430b.ijs ├── g430d.ijs ├── g430fin.ijs ├── g430inv.ijs ├── g431.ijs ├── g431a.ijs ├── g432.ijs ├── g4x.ijs ├── g4x5.ijs ├── g500.ijs ├── g502.ijs ├── g510.ijs ├── g520.ijs ├── g520b.ijs ├── g520p.ijs ├── g521.ijs ├── g522.ijs ├── g530.ijs ├── g530t.ijs ├── g531.ijs ├── g532.ijs ├── g5x.ijs ├── g5x0.ijs ├── g5x1.ijs ├── g5x2.ijs ├── g5x30.ijs ├── g5x4.ijs ├── g5x5.ijs ├── g5x6.ijs ├── g5x7.ijs ├── g600.ijs ├── g600ip.ijs ├── g601.ijs ├── g602.ijs ├── g610.ijs ├── g612.ijs ├── g620.ijs ├── g620a.ijs ├── g621.ijs ├── g622.ijs ├── g630.ijs ├── g631.ijs ├── g631c.ijs ├── g632.ijs ├── g640.ijs ├── g640k.ijs ├── g640r.ijs ├── g641.ijs ├── g6x.ijs ├── g6x0.ijs ├── g6x14.ijs ├── g7x.ijs ├── g7x5.ijs ├── g7x6.ijs ├── g8x.ijs ├── g9x.ijs ├── g9x40.ijs ├── ga.ijs ├── gassert.ijs ├── gb.ijs ├── gbpar.ijs ├── gc.ijs ├── gchar.ijs ├── gcompsc.ijs ├── gct.ijs ├── gctrl.ijs ├── gd.ijs ├── gddot.ijs ├── gdll.ijs ├── gdll_df.ijs ├── ge.ijs ├── gebar.ijs ├── gesc.ijs ├── gf.ijs ├── gfft.ijs ├── gfor.ijs ├── gft.ijs ├── ggoto.ijs ├── gh.ijs ├── gi.ijs ├── gi0.ijs ├── gibs.ijs ├── gibst.ijs ├── gicap.ijs ├── gicap2.ijs ├── gico.ijs ├── giconv.ijs ├── gif.ijs ├── gimaxmin.ijs ├── gintdiv.ijs ├── gintg.ijs ├── gintovfl.ijs ├── giph.ijs ├── gipht.ijs ├── giscode.ijs ├── git.ijs ├── gix.ijs ├── gj.ijs ├── glapack.ijs ├── glco.ijs ├── gldot.ijs ├── glocale.ijs ├── gmbx.ijs ├── gmbx0.ijs ├── gmbx1.ijs ├── gmbx2.ijs ├── gmbx3.ijs ├── gmbx4.ijs ├── gmbx5.ijs ├── gmbx6.ijs ├── gmbxah.ijs ├── gmbxip.ijs ├── gmbxqz.ijs ├── gmbxx.ijs ├── gmbxx1u.ijs ├── gmbxx1w.ijs ├── gmean.ijs ├── gmemo.ijs ├── gmmf.ijs ├── gmmf1s.ijs ├── gmmf1u.ijs ├── gmmf1w.ijs ├── gmnom.ijs ├── gn.ijs ├── gnan.ijs ├── gnum.ijs ├── gnvv.ijs ├── go.ijs ├── goi.ijs ├── goox.ijs ├── gop.ijs ├── gos.ijs ├── gparse.ijs ├── gpco.ijs ├── gpco2.ijs ├── gpcoinv.ijs ├── gpdd.ijs ├── gpi.ijs ├── gpick.ijs ├── gpoly.ijs ├── gq.ijs ├── gq101.ijs ├── gq132.ijs ├── gq201.ijs ├── gqco.ijs ├── gqnonrat.ijs ├── gr.ijs ├── gr1.ijs ├── grefcount.ijs ├── gregex.ijs ├── gs.ijs ├── gsco.ijs ├── gsco1.ijs ├── gsco1u.ijs ├── gsco1w.ijs ├── gsco2.ijs ├── gsco2u.ijs ├── gsco2w.ijs ├── gscou.ijs ├── gsdot.ijs ├── gselect.ijs ├── gsp.ijs ├── gsp0.ijs ├── gsp000.ijs ├── gsp1.ijs ├── gsp100.ijs ├── gsp101.ijs ├── gsp102.ijs ├── gsp110.ijs ├── gsp111.ijs ├── gsp112.ijs ├── gsp120.ijs ├── gsp122.ijs ├── gsp130.ijs ├── gsp2.ijs ├── gsp221.ijs ├── gsp222.ijs ├── gsp231.ijs ├── gsp320.ijs ├── gsp321.ijs ├── gsp322.ijs ├── gsp331.ijs ├── gsp400.ijs ├── gsp410.ijs ├── gsp412.ijs ├── gsp420.ijs ├── gsp421.ijs ├── gsp422.ijs ├── gsp431.ijs ├── gsp432.ijs ├── gsp520.ijs ├── gsp520sd.ijs ├── gsp520ss.ijs ├── gsp521.ijs ├── gsp530i.ijs ├── gsp530l.ijs ├── gsp530n.ijs ├── gsp531.ijs ├── gsp5x5.ijs ├── gsp6.ijs ├── gsp600.ijs ├── gsp600a.ijs ├── gspi.ijs ├── gspj.ijs ├── gspo.ijs ├── gspr.ijs ├── gspx.ijs ├── gss.ijs ├── gstack.ijs ├── gt.ijs ├── gthrow.ijs ├── gtrain.ijs ├── gtry.ijs ├── gu.ijs ├── gu0.ijs ├── gunderai.ijs ├── gwhile.ijs ├── gx.ijs ├── gx132.ijs ├── gxco.ijs ├── gxco1.ijs ├── gxco2.ijs ├── gxinf.ijs ├── test.htm └── tsu.ijs ├── unix ├── libedit.a └── libedit64.a └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/README.md -------------------------------------------------------------------------------- /addons/arc/zlib/history.txt: -------------------------------------------------------------------------------- 1 | arc/zlib - change history 2 | 3 | == 1.0.0 == 4 | * initial 803 release 5 | -------------------------------------------------------------------------------- /addons/arc/zlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/arc/zlib/readme.txt -------------------------------------------------------------------------------- /addons/arc/zlib/zlib.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/arc/zlib/zlib.ijs -------------------------------------------------------------------------------- /addons/config/addins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/config/addins.txt -------------------------------------------------------------------------------- /addons/config/addons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/config/addons.txt -------------------------------------------------------------------------------- /addons/config/config.ijs: -------------------------------------------------------------------------------- 1 | NB. Addon configuration 2 | 3 | ADDLABS=: 0 : 0 4 | ) 5 | -------------------------------------------------------------------------------- /addons/config/lastupdate.txt: -------------------------------------------------------------------------------- 1 | 2022 4 3 20 27 20.2297 2 | -------------------------------------------------------------------------------- /addons/config/library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/config/library.txt -------------------------------------------------------------------------------- /addons/config/release.txt: -------------------------------------------------------------------------------- 1 | j902 2 | -------------------------------------------------------------------------------- /addons/config/revision.txt: -------------------------------------------------------------------------------- 1 | 185 -------------------------------------------------------------------------------- /addons/config/tree.txt: -------------------------------------------------------------------------------- 1 | current -------------------------------------------------------------------------------- /addons/config/zips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/config/zips.txt -------------------------------------------------------------------------------- /addons/graphics/afm/afm.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/graphics/afm/afm.ijs -------------------------------------------------------------------------------- /addons/graphics/bmp/bmp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/graphics/bmp/bmp.ijs -------------------------------------------------------------------------------- /addons/graphics/png/png.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/graphics/png/png.ijs -------------------------------------------------------------------------------- /addons/math/misc/amoeba.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/amoeba.ijs -------------------------------------------------------------------------------- /addons/math/misc/bigpi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/bigpi.ijs -------------------------------------------------------------------------------- /addons/math/misc/brent.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/brent.ijs -------------------------------------------------------------------------------- /addons/math/misc/build.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/build.ijs -------------------------------------------------------------------------------- /addons/math/misc/cheby.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/cheby.ijs -------------------------------------------------------------------------------- /addons/math/misc/det.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/det.ijs -------------------------------------------------------------------------------- /addons/math/misc/fermat.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/fermat.ijs -------------------------------------------------------------------------------- /addons/math/misc/gcd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/gcd.ijs -------------------------------------------------------------------------------- /addons/math/misc/jacobi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/jacobi.ijs -------------------------------------------------------------------------------- /addons/math/misc/linear.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/linear.ijs -------------------------------------------------------------------------------- /addons/math/misc/mean.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/mean.ijs -------------------------------------------------------------------------------- /addons/math/misc/odeint.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/odeint.ijs -------------------------------------------------------------------------------- /addons/math/misc/poly.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/poly.ijs -------------------------------------------------------------------------------- /addons/math/misc/rsa.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/rsa.ijs -------------------------------------------------------------------------------- /addons/math/misc/spline.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/spline.ijs -------------------------------------------------------------------------------- /addons/math/misc/svd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/svd.ijs -------------------------------------------------------------------------------- /addons/math/misc/trig.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/math/misc/trig.ijs -------------------------------------------------------------------------------- /addons/stats/base/base.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/addons/stats/base/base.ijs -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/android/jni/Android.mk -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /android/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/android/readme -------------------------------------------------------------------------------- /android/release-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/android/release-android.sh -------------------------------------------------------------------------------- /asm/asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/asm.txt -------------------------------------------------------------------------------- /asm/asm64: -------------------------------------------------------------------------------- 1 | gcc -c asm64.s 2 | -------------------------------------------------------------------------------- /asm/asm64noovf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/asm64noovf.c -------------------------------------------------------------------------------- /asm/asm64noovf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/asm64noovf.s -------------------------------------------------------------------------------- /asm/copy_obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/copy_obj -------------------------------------------------------------------------------- /asm/create_asm_source: -------------------------------------------------------------------------------- 1 | gcc -S -O3 asm64noovf.c 2 | -------------------------------------------------------------------------------- /asm/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/d.c -------------------------------------------------------------------------------- /asm/d.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/d.s -------------------------------------------------------------------------------- /asm/fix_overflow.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/fix_overflow.ijs -------------------------------------------------------------------------------- /asm/linuxasm64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/linuxasm64.o -------------------------------------------------------------------------------- /asm/linuxasm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/linuxasm64.s -------------------------------------------------------------------------------- /asm/macasm64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/asm/macasm64.o -------------------------------------------------------------------------------- /base64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/LICENSE -------------------------------------------------------------------------------- /base64/include/libbase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/include/libbase64.h -------------------------------------------------------------------------------- /base64/lib/codec_choose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/codec_choose.c -------------------------------------------------------------------------------- /base64/lib/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/codecs.h -------------------------------------------------------------------------------- /base64/lib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/config.h -------------------------------------------------------------------------------- /base64/lib/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/env.h -------------------------------------------------------------------------------- /base64/lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/lib.c -------------------------------------------------------------------------------- /base64/lib/lib_openmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/lib_openmp.c -------------------------------------------------------------------------------- /base64/lib/tables/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/tables/tables.c -------------------------------------------------------------------------------- /base64/lib/tables/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/base64/lib/tables/tables.h -------------------------------------------------------------------------------- /benchmark/avx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/benchmark/avx.ijs -------------------------------------------------------------------------------- /bin/html/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/app.js -------------------------------------------------------------------------------- /bin/html/emj.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/emj.data -------------------------------------------------------------------------------- /bin/html/emj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/emj.html -------------------------------------------------------------------------------- /bin/html/emj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/emj.ijs -------------------------------------------------------------------------------- /bin/html/emj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/emj.js -------------------------------------------------------------------------------- /bin/html/emj.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/emj.wasm -------------------------------------------------------------------------------- /bin/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/index.html -------------------------------------------------------------------------------- /bin/html/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/normalize.css -------------------------------------------------------------------------------- /bin/html/viewport-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/viewport-fix.css -------------------------------------------------------------------------------- /bin/html/viewport-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html/viewport-fix.js -------------------------------------------------------------------------------- /bin/html2/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/about.js -------------------------------------------------------------------------------- /bin/html2/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/base.css -------------------------------------------------------------------------------- /bin/html2/codemirror/j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/codemirror/j.js -------------------------------------------------------------------------------- /bin/html2/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/doc.txt -------------------------------------------------------------------------------- /bin/html2/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/edit.js -------------------------------------------------------------------------------- /bin/html2/emj.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/emj.data -------------------------------------------------------------------------------- /bin/html2/emj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/emj.ijs -------------------------------------------------------------------------------- /bin/html2/emj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/emj.js -------------------------------------------------------------------------------- /bin/html2/emj.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/emj.wasm -------------------------------------------------------------------------------- /bin/html2/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/examples.js -------------------------------------------------------------------------------- /bin/html2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/favicon.ico -------------------------------------------------------------------------------- /bin/html2/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/help.js -------------------------------------------------------------------------------- /bin/html2/images/jgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/images/jgreen.png -------------------------------------------------------------------------------- /bin/html2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/index.html -------------------------------------------------------------------------------- /bin/html2/indexdist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/indexdist.html -------------------------------------------------------------------------------- /bin/html2/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/layout.js -------------------------------------------------------------------------------- /bin/html2/localj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/localj.js -------------------------------------------------------------------------------- /bin/html2/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/log.js -------------------------------------------------------------------------------- /bin/html2/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/menu.js -------------------------------------------------------------------------------- /bin/html2/pane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/pane.js -------------------------------------------------------------------------------- /bin/html2/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/popup.js -------------------------------------------------------------------------------- /bin/html2/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/start.js -------------------------------------------------------------------------------- /bin/html2/tbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/tbar.js -------------------------------------------------------------------------------- /bin/html2/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/term.js -------------------------------------------------------------------------------- /bin/html2/test.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/test.ijs -------------------------------------------------------------------------------- /bin/html2/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/util.js -------------------------------------------------------------------------------- /bin/html2/utildev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/bin/html2/utildev.js -------------------------------------------------------------------------------- /bin/html2/version.txt: -------------------------------------------------------------------------------- 1 | 1019 2 | -------------------------------------------------------------------------------- /dllsrc/jcedll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jcedll.def -------------------------------------------------------------------------------- /dllsrc/jdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll.c -------------------------------------------------------------------------------- /dllsrc/jdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll.def -------------------------------------------------------------------------------- /dllsrc/jdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll.h -------------------------------------------------------------------------------- /dllsrc/jdll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll.rc -------------------------------------------------------------------------------- /dllsrc/jdll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll.tlb -------------------------------------------------------------------------------- /dllsrc/jdll2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll2.def -------------------------------------------------------------------------------- /dllsrc/jdll_original.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdll_original.tlb -------------------------------------------------------------------------------- /dllsrc/jdllcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdllcom.h -------------------------------------------------------------------------------- /dllsrc/jdllcomx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdllcomx.cpp -------------------------------------------------------------------------------- /dllsrc/jdlltype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jdlltype.h -------------------------------------------------------------------------------- /dllsrc/jexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/dllsrc/jexe.h -------------------------------------------------------------------------------- /hostdefs/Hostdefs-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/hostdefs/Hostdefs-nopie.mk -------------------------------------------------------------------------------- /hostdefs/Hostdefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/hostdefs/Hostdefs.mk -------------------------------------------------------------------------------- /hostdefs/hostdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/hostdefs/hostdefs.c -------------------------------------------------------------------------------- /hostdefs/hostdefs_win32.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/hostdefs/hostdefs_win32.ijs -------------------------------------------------------------------------------- /jlibrary/bin/profile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jlibrary/bin/profile.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/pm.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jlibrary/system/util/pm.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/pp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jlibrary/system/util/pp.ijs -------------------------------------------------------------------------------- /jlibrary/tools/ftp/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jlibrary/tools/ftp/wget.exe -------------------------------------------------------------------------------- /jlibrary/tools/regex/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory is for the jpcre2 binaries. 3 | -------------------------------------------------------------------------------- /jsrc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/Android.mk -------------------------------------------------------------------------------- /jsrc/Jconsole-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/Jconsole-nopie.mk -------------------------------------------------------------------------------- /jsrc/Jconsole.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/Jconsole.mk -------------------------------------------------------------------------------- /jsrc/Jnative.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/Jnative.mk -------------------------------------------------------------------------------- /jsrc/Tsdll.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/Tsdll.mk -------------------------------------------------------------------------------- /jsrc/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/a.c -------------------------------------------------------------------------------- /jsrc/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/a.h -------------------------------------------------------------------------------- /jsrc/ab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ab.c -------------------------------------------------------------------------------- /jsrc/aes-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-arm.c -------------------------------------------------------------------------------- /jsrc/aes-arm_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-arm_table.h -------------------------------------------------------------------------------- /jsrc/aes-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-c.c -------------------------------------------------------------------------------- /jsrc/aes-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-c.h -------------------------------------------------------------------------------- /jsrc/aes-ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-ni.c -------------------------------------------------------------------------------- /jsrc/aes-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/aes-sse2.c -------------------------------------------------------------------------------- /jsrc/af.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/af.c -------------------------------------------------------------------------------- /jsrc/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ai.c -------------------------------------------------------------------------------- /jsrc/am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/am.c -------------------------------------------------------------------------------- /jsrc/am1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/am1.c -------------------------------------------------------------------------------- /jsrc/amn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/amn.c -------------------------------------------------------------------------------- /jsrc/andjnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/andjnative.c -------------------------------------------------------------------------------- /jsrc/ao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ao.c -------------------------------------------------------------------------------- /jsrc/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ap.c -------------------------------------------------------------------------------- /jsrc/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ar.c -------------------------------------------------------------------------------- /jsrc/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ar.h -------------------------------------------------------------------------------- /jsrc/as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/as.c -------------------------------------------------------------------------------- /jsrc/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/au.c -------------------------------------------------------------------------------- /jsrc/avx2intrin-emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/avx2intrin-emu.h -------------------------------------------------------------------------------- /jsrc/avxintrin-emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/avxintrin-emu.h -------------------------------------------------------------------------------- /jsrc/avxintrin-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/avxintrin-neon.h -------------------------------------------------------------------------------- /jsrc/blis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis.h -------------------------------------------------------------------------------- /jsrc/blis/gemm_c-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis/gemm_c-ref.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis/gemm_int-avx.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis/gemm_int-fma.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis/gemm_int-sse2.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_vec-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/blis/gemm_vec-ref.c -------------------------------------------------------------------------------- /jsrc/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/c.c -------------------------------------------------------------------------------- /jsrc/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ca.c -------------------------------------------------------------------------------- /jsrc/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cc.c -------------------------------------------------------------------------------- /jsrc/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cd.c -------------------------------------------------------------------------------- /jsrc/cf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cf.c -------------------------------------------------------------------------------- /jsrc/cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cg.c -------------------------------------------------------------------------------- /jsrc/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ch.c -------------------------------------------------------------------------------- /jsrc/cip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cip.c -------------------------------------------------------------------------------- /jsrc/cip_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cip_t.h -------------------------------------------------------------------------------- /jsrc/cipfloatmm_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cipfloatmm_t.h -------------------------------------------------------------------------------- /jsrc/cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cl.c -------------------------------------------------------------------------------- /jsrc/codingrules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/codingrules.txt -------------------------------------------------------------------------------- /jsrc/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cp.c -------------------------------------------------------------------------------- /jsrc/cpdtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cpdtsp.c -------------------------------------------------------------------------------- /jsrc/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cpuinfo.c -------------------------------------------------------------------------------- /jsrc/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cpuinfo.h -------------------------------------------------------------------------------- /jsrc/cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cr.c -------------------------------------------------------------------------------- /jsrc/cr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cr_t.h -------------------------------------------------------------------------------- /jsrc/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/crc32c.c -------------------------------------------------------------------------------- /jsrc/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/crc32c.h -------------------------------------------------------------------------------- /jsrc/crc32ctables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/crc32ctables.h -------------------------------------------------------------------------------- /jsrc/crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/crs.c -------------------------------------------------------------------------------- /jsrc/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ct.c -------------------------------------------------------------------------------- /jsrc/cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cu.c -------------------------------------------------------------------------------- /jsrc/cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cv.c -------------------------------------------------------------------------------- /jsrc/cx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/cx.c -------------------------------------------------------------------------------- /jsrc/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/d.c -------------------------------------------------------------------------------- /jsrc/d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/d.h -------------------------------------------------------------------------------- /jsrc/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dc.c -------------------------------------------------------------------------------- /jsrc/dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dss.c -------------------------------------------------------------------------------- /jsrc/dstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dstop.c -------------------------------------------------------------------------------- /jsrc/dsusp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dsusp.c -------------------------------------------------------------------------------- /jsrc/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dtoa.c -------------------------------------------------------------------------------- /jsrc/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/dtoa.h -------------------------------------------------------------------------------- /jsrc/emj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/emj.c -------------------------------------------------------------------------------- /jsrc/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/extra.js -------------------------------------------------------------------------------- /jsrc/f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/f.c -------------------------------------------------------------------------------- /jsrc/f2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/f2.c -------------------------------------------------------------------------------- /jsrc/fbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/fbu.c -------------------------------------------------------------------------------- /jsrc/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/fnmatch.c -------------------------------------------------------------------------------- /jsrc/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/fnmatch.h -------------------------------------------------------------------------------- /jsrc/gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/gemm.c -------------------------------------------------------------------------------- /jsrc/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/gemm.h -------------------------------------------------------------------------------- /jsrc/i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/i.c -------------------------------------------------------------------------------- /jsrc/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/io.c -------------------------------------------------------------------------------- /jsrc/j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/j.c -------------------------------------------------------------------------------- /jsrc/j.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/j.h -------------------------------------------------------------------------------- /jsrc/ja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ja.h -------------------------------------------------------------------------------- /jsrc/jc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jc.h -------------------------------------------------------------------------------- /jsrc/jconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jconsole.c -------------------------------------------------------------------------------- /jsrc/jdlllic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jdlllic.c -------------------------------------------------------------------------------- /jsrc/je.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/je.h -------------------------------------------------------------------------------- /jsrc/jeload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jeload.c -------------------------------------------------------------------------------- /jsrc/jeload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jeload.h -------------------------------------------------------------------------------- /jsrc/jep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jep.c -------------------------------------------------------------------------------- /jsrc/jerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jerr.h -------------------------------------------------------------------------------- /jsrc/jfex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jfex.c -------------------------------------------------------------------------------- /jsrc/jfex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jfex.h -------------------------------------------------------------------------------- /jsrc/jlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jlib.h -------------------------------------------------------------------------------- /jsrc/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/js.h -------------------------------------------------------------------------------- /jsrc/jt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jt.h -------------------------------------------------------------------------------- /jsrc/jtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jtype.h -------------------------------------------------------------------------------- /jsrc/jversion-x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jversion-x.h -------------------------------------------------------------------------------- /jsrc/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jversion.h -------------------------------------------------------------------------------- /jsrc/jx_utils_jnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/jx_utils_jnative.h -------------------------------------------------------------------------------- /jsrc/k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/k.c -------------------------------------------------------------------------------- /jsrc/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/linenoise.c -------------------------------------------------------------------------------- /jsrc/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/linenoise.h -------------------------------------------------------------------------------- /jsrc/m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/m.c -------------------------------------------------------------------------------- /jsrc/m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/m.h -------------------------------------------------------------------------------- /jsrc/makefile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/makefile.html -------------------------------------------------------------------------------- /jsrc/makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/makefile.linux -------------------------------------------------------------------------------- /jsrc/makefile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/makefile.tests -------------------------------------------------------------------------------- /jsrc/makefile.wasmer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/makefile.wasmer -------------------------------------------------------------------------------- /jsrc/mbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/mbx.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/README.txt -------------------------------------------------------------------------------- /jsrc/openssl/sha/asm/keccak1600-mmx-elf32.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md4.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md4_dgst.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md4_locl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md4_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md5.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md5_dgst.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md5_locl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/md5_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/openssl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha1_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha1_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha256.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha3.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha3.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha512.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/openssl/sha/sha_locl.h -------------------------------------------------------------------------------- /jsrc/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/p.c -------------------------------------------------------------------------------- /jsrc/p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/p.h -------------------------------------------------------------------------------- /jsrc/pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/pv.c -------------------------------------------------------------------------------- /jsrc/px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/px.c -------------------------------------------------------------------------------- /jsrc/r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/r.c -------------------------------------------------------------------------------- /jsrc/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/result.h -------------------------------------------------------------------------------- /jsrc/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/rl.c -------------------------------------------------------------------------------- /jsrc/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/rt.c -------------------------------------------------------------------------------- /jsrc/s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/s.c -------------------------------------------------------------------------------- /jsrc/s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/s.h -------------------------------------------------------------------------------- /jsrc/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/sc.c -------------------------------------------------------------------------------- /jsrc/sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/sl.c -------------------------------------------------------------------------------- /jsrc/sn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/sn.c -------------------------------------------------------------------------------- /jsrc/sse2neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/sse2neon.h -------------------------------------------------------------------------------- /jsrc/sse2neon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/sse2neon2.h -------------------------------------------------------------------------------- /jsrc/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/t.c -------------------------------------------------------------------------------- /jsrc/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/tags.txt -------------------------------------------------------------------------------- /jsrc/tsdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/tsdll.c -------------------------------------------------------------------------------- /jsrc/u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/u.c -------------------------------------------------------------------------------- /jsrc/v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/v.c -------------------------------------------------------------------------------- /jsrc/v0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/v0.c -------------------------------------------------------------------------------- /jsrc/v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/v1.c -------------------------------------------------------------------------------- /jsrc/v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/v2.c -------------------------------------------------------------------------------- /jsrc/va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va.h -------------------------------------------------------------------------------- /jsrc/va1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va1.c -------------------------------------------------------------------------------- /jsrc/va1ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va1ss.c -------------------------------------------------------------------------------- /jsrc/va2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va2.c -------------------------------------------------------------------------------- /jsrc/va2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va2s.c -------------------------------------------------------------------------------- /jsrc/va2ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/va2ss.c -------------------------------------------------------------------------------- /jsrc/vamultsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vamultsp.c -------------------------------------------------------------------------------- /jsrc/vasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vasm.h -------------------------------------------------------------------------------- /jsrc/vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vb.c -------------------------------------------------------------------------------- /jsrc/vbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vbang.c -------------------------------------------------------------------------------- /jsrc/vbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vbit.c -------------------------------------------------------------------------------- /jsrc/vcant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcant.c -------------------------------------------------------------------------------- /jsrc/vcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcat.c -------------------------------------------------------------------------------- /jsrc/vcatsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcatsp.c -------------------------------------------------------------------------------- /jsrc/vchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vchar.c -------------------------------------------------------------------------------- /jsrc/vcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcomp.c -------------------------------------------------------------------------------- /jsrc/vcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcomp.h -------------------------------------------------------------------------------- /jsrc/vcompsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vcompsc.c -------------------------------------------------------------------------------- /jsrc/vd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vd.c -------------------------------------------------------------------------------- /jsrc/vdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vdx.c -------------------------------------------------------------------------------- /jsrc/vdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vdx.h -------------------------------------------------------------------------------- /jsrc/ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ve.c -------------------------------------------------------------------------------- /jsrc/ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ve.h -------------------------------------------------------------------------------- /jsrc/vf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vf.c -------------------------------------------------------------------------------- /jsrc/vfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vfft.c -------------------------------------------------------------------------------- /jsrc/vfrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vfrom.c -------------------------------------------------------------------------------- /jsrc/vfromsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vfromsp.c -------------------------------------------------------------------------------- /jsrc/vg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vg.c -------------------------------------------------------------------------------- /jsrc/vg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vg.h -------------------------------------------------------------------------------- /jsrc/vgauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgauss.c -------------------------------------------------------------------------------- /jsrc/vgcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgcomp.c -------------------------------------------------------------------------------- /jsrc/vgmerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgmerge.h -------------------------------------------------------------------------------- /jsrc/vgmergemincomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgmergemincomp.h -------------------------------------------------------------------------------- /jsrc/vgranking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgranking.c -------------------------------------------------------------------------------- /jsrc/vgsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgsort.c -------------------------------------------------------------------------------- /jsrc/vgsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgsort.h -------------------------------------------------------------------------------- /jsrc/vgsortq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgsortq.h -------------------------------------------------------------------------------- /jsrc/vgsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vgsp.c -------------------------------------------------------------------------------- /jsrc/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vi.c -------------------------------------------------------------------------------- /jsrc/viavx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/viavx.c -------------------------------------------------------------------------------- /jsrc/viix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/viix.c -------------------------------------------------------------------------------- /jsrc/visp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/visp.c -------------------------------------------------------------------------------- /jsrc/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vm.c -------------------------------------------------------------------------------- /jsrc/vo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vo.c -------------------------------------------------------------------------------- /jsrc/vp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vp.c -------------------------------------------------------------------------------- /jsrc/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vq.c -------------------------------------------------------------------------------- /jsrc/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vq.h -------------------------------------------------------------------------------- /jsrc/vrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vrand.c -------------------------------------------------------------------------------- /jsrc/vrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vrep.c -------------------------------------------------------------------------------- /jsrc/vs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vs.c -------------------------------------------------------------------------------- /jsrc/vsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vsb.c -------------------------------------------------------------------------------- /jsrc/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vt.c -------------------------------------------------------------------------------- /jsrc/vu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vu.c -------------------------------------------------------------------------------- /jsrc/vx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vx.c -------------------------------------------------------------------------------- /jsrc/vx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vx.h -------------------------------------------------------------------------------- /jsrc/vz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vz.c -------------------------------------------------------------------------------- /jsrc/vz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/vz.h -------------------------------------------------------------------------------- /jsrc/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/w.c -------------------------------------------------------------------------------- /jsrc/w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/w.h -------------------------------------------------------------------------------- /jsrc/wasm_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/wasm_stubs.h -------------------------------------------------------------------------------- /jsrc/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/wc.c -------------------------------------------------------------------------------- /jsrc/wn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/wn.c -------------------------------------------------------------------------------- /jsrc/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/ws.c -------------------------------------------------------------------------------- /jsrc/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/x.c -------------------------------------------------------------------------------- /jsrc/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/x.h -------------------------------------------------------------------------------- /jsrc/x15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/x15.c -------------------------------------------------------------------------------- /jsrc/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xa.c -------------------------------------------------------------------------------- /jsrc/xaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xaes.c -------------------------------------------------------------------------------- /jsrc/xb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xb.c -------------------------------------------------------------------------------- /jsrc/xc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xc.c -------------------------------------------------------------------------------- /jsrc/xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xc.h -------------------------------------------------------------------------------- /jsrc/xcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xcrc.c -------------------------------------------------------------------------------- /jsrc/xd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xd.c -------------------------------------------------------------------------------- /jsrc/xf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xf.c -------------------------------------------------------------------------------- /jsrc/xfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xfmt.c -------------------------------------------------------------------------------- /jsrc/xh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xh.c -------------------------------------------------------------------------------- /jsrc/xi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xi.c -------------------------------------------------------------------------------- /jsrc/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xl.c -------------------------------------------------------------------------------- /jsrc/xo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xo.c -------------------------------------------------------------------------------- /jsrc/xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xs.c -------------------------------------------------------------------------------- /jsrc/xsha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xsha.c -------------------------------------------------------------------------------- /jsrc/xt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xt.c -------------------------------------------------------------------------------- /jsrc/xu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/jsrc/xu.c -------------------------------------------------------------------------------- /labs/averages.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/averages.ijt -------------------------------------------------------------------------------- /labs/bestfit.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/bestfit.ijt -------------------------------------------------------------------------------- /labs/bincoefs.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/bincoefs.ijt -------------------------------------------------------------------------------- /labs/build_labs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/build_labs.sh -------------------------------------------------------------------------------- /labs/coleman.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/coleman.ijt -------------------------------------------------------------------------------- /labs/compositions.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/compositions.ijt -------------------------------------------------------------------------------- /labs/display.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/display.ijt -------------------------------------------------------------------------------- /labs/dllbasic.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/dllbasic.ijt -------------------------------------------------------------------------------- /labs/dllcallback.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/dllcallback.ijt -------------------------------------------------------------------------------- /labs/dllcallback_win.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/dllcallback_win.ijt -------------------------------------------------------------------------------- /labs/dllwin32.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/dllwin32.ijt -------------------------------------------------------------------------------- /labs/families.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/families.ijt -------------------------------------------------------------------------------- /labs/fntab.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/fntab.ijt -------------------------------------------------------------------------------- /labs/frame.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/frame.ijt -------------------------------------------------------------------------------- /labs/groups.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/groups.ijt -------------------------------------------------------------------------------- /labs/huffman.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/huffman.ijt -------------------------------------------------------------------------------- /labs/intro.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/intro.ijt -------------------------------------------------------------------------------- /labs/iter.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/iter.ijt -------------------------------------------------------------------------------- /labs/jtaste2.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/jtaste2.ijt -------------------------------------------------------------------------------- /labs/labs805.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/labs805.ijs -------------------------------------------------------------------------------- /labs/mathroot.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/mathroot.ijt -------------------------------------------------------------------------------- /labs/monad.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/monad.ijt -------------------------------------------------------------------------------- /labs/polynom.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/polynom.ijt -------------------------------------------------------------------------------- /labs/pythag3.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/pythag3.ijt -------------------------------------------------------------------------------- /labs/seqmachine.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/seqmachine.ijt -------------------------------------------------------------------------------- /labs/shapley.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/shapley.ijt -------------------------------------------------------------------------------- /labs/sparse.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/sparse.ijt -------------------------------------------------------------------------------- /labs/special_searches.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/special_searches.ijt -------------------------------------------------------------------------------- /labs/tables.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/tables.ijt -------------------------------------------------------------------------------- /labs/towerofhanoi.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/towerofhanoi.ijt -------------------------------------------------------------------------------- /labs/tte.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/tte.ijt -------------------------------------------------------------------------------- /labs/volume.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs/volume.ijt -------------------------------------------------------------------------------- /labs_labs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/LICENSE -------------------------------------------------------------------------------- /labs_labs/build.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/build.ijs -------------------------------------------------------------------------------- /labs_labs/core/display.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/display.ijt -------------------------------------------------------------------------------- /labs_labs/core/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/example.csv -------------------------------------------------------------------------------- /labs_labs/core/fivenum.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/fivenum.csv -------------------------------------------------------------------------------- /labs_labs/core/intro.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/intro.ijt -------------------------------------------------------------------------------- /labs_labs/core/j.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/j.ijt -------------------------------------------------------------------------------- /labs_labs/core/jclick1.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/jclick1.ijt -------------------------------------------------------------------------------- /labs_labs/core/jpcfmt.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/jpcfmt.ijs -------------------------------------------------------------------------------- /labs_labs/core/jtaste1.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/jtaste1.ijt -------------------------------------------------------------------------------- /labs_labs/core/jtaste2.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/jtaste2.ijt -------------------------------------------------------------------------------- /labs_labs/core/locales.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/locales.ijt -------------------------------------------------------------------------------- /labs_labs/core/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/lorem.txt -------------------------------------------------------------------------------- /labs_labs/core/monad.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/monad.ijt -------------------------------------------------------------------------------- /labs_labs/core/oop.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/oop.ijt -------------------------------------------------------------------------------- /labs_labs/core/sparse.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/sparse.ijt -------------------------------------------------------------------------------- /labs_labs/core/splitcsv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/core/splitcsv.ijs -------------------------------------------------------------------------------- /labs_labs/debug/jig.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/debug/jig.ijt -------------------------------------------------------------------------------- /labs_labs/debug/tte.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/debug/tte.ijt -------------------------------------------------------------------------------- /labs_labs/examples/data/loc.inf: -------------------------------------------------------------------------------- 1 | [dBase] 2 | NDX1=empdept.ndx 3 | -------------------------------------------------------------------------------- /labs_labs/exlabs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/exlabs.txt -------------------------------------------------------------------------------- /labs_labs/general/fuzzy.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/general/fuzzy.ijt -------------------------------------------------------------------------------- /labs_labs/general/nn1.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/general/nn1.ijt -------------------------------------------------------------------------------- /labs_labs/graphics/d3.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/graphics/d3.ijt -------------------------------------------------------------------------------- /labs_labs/graphics/gl2.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/graphics/gl2.ijt -------------------------------------------------------------------------------- /labs_labs/graphics/plot.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/graphics/plot.ijt -------------------------------------------------------------------------------- /labs_labs/lab.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/lab.ijs -------------------------------------------------------------------------------- /labs_labs/labdir.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/labdir.ijs -------------------------------------------------------------------------------- /labs_labs/labintro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/labintro.txt -------------------------------------------------------------------------------- /labs_labs/labs.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/labs.ijs -------------------------------------------------------------------------------- /labs_labs/labs.jproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs_labs/labs805.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/labs805.ijs -------------------------------------------------------------------------------- /labs_labs/manifest.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/manifest.ijs -------------------------------------------------------------------------------- /labs_labs/math/area.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/area.ijt -------------------------------------------------------------------------------- /labs_labs/math/averages.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/averages.ijt -------------------------------------------------------------------------------- /labs_labs/math/bestfit.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/bestfit.ijt -------------------------------------------------------------------------------- /labs_labs/math/bincoefs.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/bincoefs.ijt -------------------------------------------------------------------------------- /labs_labs/math/fntab.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/fntab.ijt -------------------------------------------------------------------------------- /labs_labs/math/frame.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/frame.ijt -------------------------------------------------------------------------------- /labs_labs/math/groups.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/groups.ijt -------------------------------------------------------------------------------- /labs_labs/math/iter.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/iter.ijt -------------------------------------------------------------------------------- /labs_labs/math/rot.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/rot.ijt -------------------------------------------------------------------------------- /labs_labs/math/spiral.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/spiral.ijt -------------------------------------------------------------------------------- /labs_labs/math/tables.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/tables.ijt -------------------------------------------------------------------------------- /labs_labs/math/volume.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/math/volume.ijt -------------------------------------------------------------------------------- /labs_labs/run.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/run.ijs -------------------------------------------------------------------------------- /labs_labs/source/run805/labreset.ijs: -------------------------------------------------------------------------------- 1 | 2 | labreset '' 3 | -------------------------------------------------------------------------------- /labs_labs/system/pm.ijt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/labs_labs/system/pm.ijt -------------------------------------------------------------------------------- /libedit/libedit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/libedit/libedit.a -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/license.txt -------------------------------------------------------------------------------- /make2/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/build_all.sh -------------------------------------------------------------------------------- /make2/build_jconsole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/build_jconsole.sh -------------------------------------------------------------------------------- /make2/build_jnative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/build_jnative.sh -------------------------------------------------------------------------------- /make2/build_libj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/build_libj.sh -------------------------------------------------------------------------------- /make2/build_tsdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/build_tsdll.sh -------------------------------------------------------------------------------- /make2/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/clean.sh -------------------------------------------------------------------------------- /make2/cpbin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/cpbin.sh -------------------------------------------------------------------------------- /make2/macos-libomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/macos-libomp.txt -------------------------------------------------------------------------------- /make2/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/make.txt -------------------------------------------------------------------------------- /make2/makefile-jconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/makefile-jconsole -------------------------------------------------------------------------------- /make2/makefile-jnative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/makefile-jnative -------------------------------------------------------------------------------- /make2/makefile-libj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/makefile-libj -------------------------------------------------------------------------------- /make2/makefile-tsdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make2/makefile-tsdll -------------------------------------------------------------------------------- /make_deprecated/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make_deprecated/clean.sh -------------------------------------------------------------------------------- /make_deprecated/domake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make_deprecated/domake.sh -------------------------------------------------------------------------------- /make_deprecated/jvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make_deprecated/jvars.sh -------------------------------------------------------------------------------- /make_deprecated/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make_deprecated/make.txt -------------------------------------------------------------------------------- /make_deprecated/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/make_deprecated/makefile -------------------------------------------------------------------------------- /makemsvc/jdll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/jdll/makefile -------------------------------------------------------------------------------- /makemsvc/jnative/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/jnative/makefile -------------------------------------------------------------------------------- /makemsvc/makemsvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/makemsvc.txt -------------------------------------------------------------------------------- /makemsvc/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/release.bat -------------------------------------------------------------------------------- /makemsvc/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/release.sh -------------------------------------------------------------------------------- /makemsvc/tsdll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makemsvc/tsdll/makefile -------------------------------------------------------------------------------- /makevs/copy_jlibrary.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/copy_jlibrary.bat -------------------------------------------------------------------------------- /makevs/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/install.bat -------------------------------------------------------------------------------- /makevs/jconsole/jgray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/jconsole/jgray.ico -------------------------------------------------------------------------------- /makevs/jdll/profile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/jdll/profile.ijs -------------------------------------------------------------------------------- /makevs/makevs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/makevs.txt -------------------------------------------------------------------------------- /makevs/midl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/build.bat -------------------------------------------------------------------------------- /makevs/midl/jdll.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/jdll.idl -------------------------------------------------------------------------------- /makevs/midl/jdll.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/jdll.odl -------------------------------------------------------------------------------- /makevs/midl/jdll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/jdll.tlb -------------------------------------------------------------------------------- /makevs/midl/jdll_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/jdll_i.c -------------------------------------------------------------------------------- /makevs/midl/jdllidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/jdllidl.h -------------------------------------------------------------------------------- /makevs/midl/methods.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/methods.odl -------------------------------------------------------------------------------- /makevs/midl/tlb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/midl/tlb.txt -------------------------------------------------------------------------------- /makevs/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/release.bat -------------------------------------------------------------------------------- /makevs/template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/template.bat -------------------------------------------------------------------------------- /makevs/templates.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/templates.ijs -------------------------------------------------------------------------------- /makevs/tsdll/tsdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/makevs/tsdll/tsdll.def -------------------------------------------------------------------------------- /netdefs/Netdefs-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/netdefs/Netdefs-nopie.mk -------------------------------------------------------------------------------- /netdefs/Netdefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/netdefs/Netdefs.mk -------------------------------------------------------------------------------- /netdefs/netdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/netdefs/netdefs.c -------------------------------------------------------------------------------- /netdefs/netdefs_win32.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/netdefs/netdefs_win32.ijs -------------------------------------------------------------------------------- /overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/overview.txt -------------------------------------------------------------------------------- /script/build_test.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/build_test.ijs -------------------------------------------------------------------------------- /script/buildga.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/buildga.cmd -------------------------------------------------------------------------------- /script/buildga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/buildga.sh -------------------------------------------------------------------------------- /script/github_builds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/github_builds.txt -------------------------------------------------------------------------------- /script/global_report.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/global_report.ijs -------------------------------------------------------------------------------- /script/map_globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/map_globals.sh -------------------------------------------------------------------------------- /script/run_tests.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/run_tests.ijs -------------------------------------------------------------------------------- /script/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/tag.sh -------------------------------------------------------------------------------- /script/testga.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/testga.cmd -------------------------------------------------------------------------------- /script/testga.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/testga.ijs -------------------------------------------------------------------------------- /script/testga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/testga.sh -------------------------------------------------------------------------------- /script/testgares.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/script/testgares.sh -------------------------------------------------------------------------------- /script/ver.ijs: -------------------------------------------------------------------------------- 1 | 2!:55 (9!:14'') 1!:2 [2 2 | -------------------------------------------------------------------------------- /sleef/include/sleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/include/sleef.h -------------------------------------------------------------------------------- /sleef/src/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/common/common.c -------------------------------------------------------------------------------- /sleef/src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/common/common.h -------------------------------------------------------------------------------- /sleef/src/common/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/common/misc.h -------------------------------------------------------------------------------- /sleef/src/libm/dd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/libm/dd.h -------------------------------------------------------------------------------- /sleef/src/libm/estrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/libm/estrin.h -------------------------------------------------------------------------------- /sleef/src/libm/norename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/libm/norename.h -------------------------------------------------------------------------------- /sleef/src/libm/rempitab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/libm/rempitab.c -------------------------------------------------------------------------------- /sleef/src/libm/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/sleef/src/libm/rename.h -------------------------------------------------------------------------------- /source/base/base.jproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/base/base.jproj -------------------------------------------------------------------------------- /source/base/build.ijs: -------------------------------------------------------------------------------- 1 | 2 | load '~Playground/save/build.ijs' 3 | -------------------------------------------------------------------------------- /source/base/init.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/base/init.ijs -------------------------------------------------------------------------------- /source/base/pacman.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/base/pacman.ijs -------------------------------------------------------------------------------- /source/base/run.ijs: -------------------------------------------------------------------------------- 1 | NB. run 2 | -------------------------------------------------------------------------------- /source/base/util.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/base/util.ijs -------------------------------------------------------------------------------- /source/base/view.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/base/view.ijs -------------------------------------------------------------------------------- /source/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/build.py -------------------------------------------------------------------------------- /source/help/build.ijs: -------------------------------------------------------------------------------- 1 | 2 | load '~Playground/save/build.ijs' 3 | -------------------------------------------------------------------------------- /source/help/cname.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/cname.ijs -------------------------------------------------------------------------------- /source/help/help.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/help.ijs -------------------------------------------------------------------------------- /source/help/help.jproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/help.jproj -------------------------------------------------------------------------------- /source/help/indexnv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/indexnv.ijs -------------------------------------------------------------------------------- /source/help/init.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/init.ijs -------------------------------------------------------------------------------- /source/help/play.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/help/play.ijs -------------------------------------------------------------------------------- /source/help/run.ijs: -------------------------------------------------------------------------------- 1 | NB. run 2 | -------------------------------------------------------------------------------- /source/save/build.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/source/save/build.ijs -------------------------------------------------------------------------------- /source/save/run.ijs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/save/save.jproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/g0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g0.ijs -------------------------------------------------------------------------------- /test/g000.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g000.ijs -------------------------------------------------------------------------------- /test/g000a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g000a.ijs -------------------------------------------------------------------------------- /test/g000i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g000i.ijs -------------------------------------------------------------------------------- /test/g000p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g000p.ijs -------------------------------------------------------------------------------- /test/g000s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g000s.ijs -------------------------------------------------------------------------------- /test/g001.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g001.ijs -------------------------------------------------------------------------------- /test/g010.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g010.ijs -------------------------------------------------------------------------------- /test/g010a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g010a.ijs -------------------------------------------------------------------------------- /test/g010i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g010i.ijs -------------------------------------------------------------------------------- /test/g010p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g010p.ijs -------------------------------------------------------------------------------- /test/g010s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g010s.ijs -------------------------------------------------------------------------------- /test/g011.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g011.ijs -------------------------------------------------------------------------------- /test/g011a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g011a.ijs -------------------------------------------------------------------------------- /test/g011i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g011i.ijs -------------------------------------------------------------------------------- /test/g011p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g011p.ijs -------------------------------------------------------------------------------- /test/g011s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g011s.ijs -------------------------------------------------------------------------------- /test/g012.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g012.ijs -------------------------------------------------------------------------------- /test/g012a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g012a.ijs -------------------------------------------------------------------------------- /test/g012i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g012i.ijs -------------------------------------------------------------------------------- /test/g012p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g012p.ijs -------------------------------------------------------------------------------- /test/g012s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g012s.ijs -------------------------------------------------------------------------------- /test/g020.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g020.ijs -------------------------------------------------------------------------------- /test/g020a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g020a.ijs -------------------------------------------------------------------------------- /test/g020i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g020i.ijs -------------------------------------------------------------------------------- /test/g020p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g020p.ijs -------------------------------------------------------------------------------- /test/g020s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g020s.ijs -------------------------------------------------------------------------------- /test/g021.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g021.ijs -------------------------------------------------------------------------------- /test/g021a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g021a.ijs -------------------------------------------------------------------------------- /test/g021i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g021i.ijs -------------------------------------------------------------------------------- /test/g021p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g021p.ijs -------------------------------------------------------------------------------- /test/g021s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g021s.ijs -------------------------------------------------------------------------------- /test/g022.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g022.ijs -------------------------------------------------------------------------------- /test/g022a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g022a.ijs -------------------------------------------------------------------------------- /test/g022i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g022i.ijs -------------------------------------------------------------------------------- /test/g022p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g022p.ijs -------------------------------------------------------------------------------- /test/g022s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g022s.ijs -------------------------------------------------------------------------------- /test/g030.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g030.ijs -------------------------------------------------------------------------------- /test/g030a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g030a.ijs -------------------------------------------------------------------------------- /test/g031.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g031.ijs -------------------------------------------------------------------------------- /test/g032.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g032.ijs -------------------------------------------------------------------------------- /test/g0a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g0a.ijs -------------------------------------------------------------------------------- /test/g0x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g0x.ijs -------------------------------------------------------------------------------- /test/g100.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g100.ijs -------------------------------------------------------------------------------- /test/g100a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g100a.ijs -------------------------------------------------------------------------------- /test/g100i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g100i.ijs -------------------------------------------------------------------------------- /test/g100p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g100p.ijs -------------------------------------------------------------------------------- /test/g100s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g100s.ijs -------------------------------------------------------------------------------- /test/g101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g101.ijs -------------------------------------------------------------------------------- /test/g101a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g101a.ijs -------------------------------------------------------------------------------- /test/g101i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g101i.ijs -------------------------------------------------------------------------------- /test/g101p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g101p.ijs -------------------------------------------------------------------------------- /test/g101s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g101s.ijs -------------------------------------------------------------------------------- /test/g102.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g102.ijs -------------------------------------------------------------------------------- /test/g102a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g102a.ijs -------------------------------------------------------------------------------- /test/g102i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g102i.ijs -------------------------------------------------------------------------------- /test/g102p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g102p.ijs -------------------------------------------------------------------------------- /test/g102s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g102s.ijs -------------------------------------------------------------------------------- /test/g110.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g110.ijs -------------------------------------------------------------------------------- /test/g110a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g110a.ijs -------------------------------------------------------------------------------- /test/g110i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g110i.ijs -------------------------------------------------------------------------------- /test/g110p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g110p.ijs -------------------------------------------------------------------------------- /test/g110s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g110s.ijs -------------------------------------------------------------------------------- /test/g111.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g111.ijs -------------------------------------------------------------------------------- /test/g111a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g111a.ijs -------------------------------------------------------------------------------- /test/g111i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g111i.ijs -------------------------------------------------------------------------------- /test/g111p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g111p.ijs -------------------------------------------------------------------------------- /test/g111s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g111s.ijs -------------------------------------------------------------------------------- /test/g112.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g112.ijs -------------------------------------------------------------------------------- /test/g112a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g112a.ijs -------------------------------------------------------------------------------- /test/g112i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g112i.ijs -------------------------------------------------------------------------------- /test/g112p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g112p.ijs -------------------------------------------------------------------------------- /test/g112s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g112s.ijs -------------------------------------------------------------------------------- /test/g120.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g120.ijs -------------------------------------------------------------------------------- /test/g120a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g120a.ijs -------------------------------------------------------------------------------- /test/g120i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g120i.ijs -------------------------------------------------------------------------------- /test/g120p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g120p.ijs -------------------------------------------------------------------------------- /test/g120s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g120s.ijs -------------------------------------------------------------------------------- /test/g121.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g121.ijs -------------------------------------------------------------------------------- /test/g122.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g122.ijs -------------------------------------------------------------------------------- /test/g122a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g122a.ijs -------------------------------------------------------------------------------- /test/g128x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g128x.ijs -------------------------------------------------------------------------------- /test/g128x3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g128x3.ijs -------------------------------------------------------------------------------- /test/g128x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g128x5.ijs -------------------------------------------------------------------------------- /test/g128x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g128x6.ijs -------------------------------------------------------------------------------- /test/g128x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g128x7.ijs -------------------------------------------------------------------------------- /test/g130.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g130.ijs -------------------------------------------------------------------------------- /test/g130a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g130a.ijs -------------------------------------------------------------------------------- /test/g130i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g130i.ijs -------------------------------------------------------------------------------- /test/g130p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g130p.ijs -------------------------------------------------------------------------------- /test/g131.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g131.ijs -------------------------------------------------------------------------------- /test/g132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g132.ijs -------------------------------------------------------------------------------- /test/g13x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g13x.ijs -------------------------------------------------------------------------------- /test/g15x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g15x.ijs -------------------------------------------------------------------------------- /test/g18x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g18x.ijs -------------------------------------------------------------------------------- /test/g1x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x.ijs -------------------------------------------------------------------------------- /test/g1x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x0.ijs -------------------------------------------------------------------------------- /test/g1x1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x1.ijs -------------------------------------------------------------------------------- /test/g1x11.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x11.ijs -------------------------------------------------------------------------------- /test/g1x12.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x12.ijs -------------------------------------------------------------------------------- /test/g1x2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x2.ijs -------------------------------------------------------------------------------- /test/g1x20.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x20.ijs -------------------------------------------------------------------------------- /test/g1x3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x3.ijs -------------------------------------------------------------------------------- /test/g1x30.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x30.ijs -------------------------------------------------------------------------------- /test/g1x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x4.ijs -------------------------------------------------------------------------------- /test/g1x43.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x43.ijs -------------------------------------------------------------------------------- /test/g1x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x5.ijs -------------------------------------------------------------------------------- /test/g1x55.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x55.ijs -------------------------------------------------------------------------------- /test/g1x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g1x7.ijs -------------------------------------------------------------------------------- /test/g200.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g200.ijs -------------------------------------------------------------------------------- /test/g200a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g200a.ijs -------------------------------------------------------------------------------- /test/g200i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g200i.ijs -------------------------------------------------------------------------------- /test/g200m.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g200m.ijs -------------------------------------------------------------------------------- /test/g200p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g200p.ijs -------------------------------------------------------------------------------- /test/g201.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g201.ijs -------------------------------------------------------------------------------- /test/g202.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g202.ijs -------------------------------------------------------------------------------- /test/g202b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g202b.ijs -------------------------------------------------------------------------------- /test/g210.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g210.ijs -------------------------------------------------------------------------------- /test/g210a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g210a.ijs -------------------------------------------------------------------------------- /test/g211.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g211.ijs -------------------------------------------------------------------------------- /test/g212.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g212.ijs -------------------------------------------------------------------------------- /test/g220.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g220.ijs -------------------------------------------------------------------------------- /test/g220t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g220t.ijs -------------------------------------------------------------------------------- /test/g221.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g221.ijs -------------------------------------------------------------------------------- /test/g222.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g222.ijs -------------------------------------------------------------------------------- /test/g222a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g222a.ijs -------------------------------------------------------------------------------- /test/g222i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g222i.ijs -------------------------------------------------------------------------------- /test/g222p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g222p.ijs -------------------------------------------------------------------------------- /test/g222s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g222s.ijs -------------------------------------------------------------------------------- /test/g230.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g230.ijs -------------------------------------------------------------------------------- /test/g230a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g230a.ijs -------------------------------------------------------------------------------- /test/g230i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g230i.ijs -------------------------------------------------------------------------------- /test/g230p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g230p.ijs -------------------------------------------------------------------------------- /test/g230s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g230s.ijs -------------------------------------------------------------------------------- /test/g231.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g231.ijs -------------------------------------------------------------------------------- /test/g232.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g232.ijs -------------------------------------------------------------------------------- /test/g2x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g2x.ijs -------------------------------------------------------------------------------- /test/g300.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g300.ijs -------------------------------------------------------------------------------- /test/g300b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g300b.ijs -------------------------------------------------------------------------------- /test/g300t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g300t.ijs -------------------------------------------------------------------------------- /test/g301.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g301.ijs -------------------------------------------------------------------------------- /test/g310.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g310.ijs -------------------------------------------------------------------------------- /test/g310a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g310a.ijs -------------------------------------------------------------------------------- /test/g310names.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g310names.ijs -------------------------------------------------------------------------------- /test/g310r.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g310r.ijs -------------------------------------------------------------------------------- /test/g310t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g310t.ijs -------------------------------------------------------------------------------- /test/g311.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g311.ijs -------------------------------------------------------------------------------- /test/g312.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g312.ijs -------------------------------------------------------------------------------- /test/g320.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g320.ijs -------------------------------------------------------------------------------- /test/g320ip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g320ip.ijs -------------------------------------------------------------------------------- /test/g320ipt.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g320ipt.ijs -------------------------------------------------------------------------------- /test/g321.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g321.ijs -------------------------------------------------------------------------------- /test/g321t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g321t.ijs -------------------------------------------------------------------------------- /test/g322.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g322.ijs -------------------------------------------------------------------------------- /test/g330.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g330.ijs -------------------------------------------------------------------------------- /test/g330f.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g330f.ijs -------------------------------------------------------------------------------- /test/g330t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g330t.ijs -------------------------------------------------------------------------------- /test/g331.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331.ijs -------------------------------------------------------------------------------- /test/g331bx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331bx.ijs -------------------------------------------------------------------------------- /test/g331col.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331col.ijs -------------------------------------------------------------------------------- /test/g331ins.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331ins.ijs -------------------------------------------------------------------------------- /test/g331ps.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331ps.ijs -------------------------------------------------------------------------------- /test/g331sp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g331sp.ijs -------------------------------------------------------------------------------- /test/g332.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g332.ijs -------------------------------------------------------------------------------- /test/g332s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g332s.ijs -------------------------------------------------------------------------------- /test/g3x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g3x.ijs -------------------------------------------------------------------------------- /test/g3x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g3x4.ijs -------------------------------------------------------------------------------- /test/g3x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g3x5.ijs -------------------------------------------------------------------------------- /test/g3x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g3x6.ijs -------------------------------------------------------------------------------- /test/g400.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g400.ijs -------------------------------------------------------------------------------- /test/g400e.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g400e.ijs -------------------------------------------------------------------------------- /test/g401.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g401.ijs -------------------------------------------------------------------------------- /test/g402.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g402.ijs -------------------------------------------------------------------------------- /test/g410.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g410.ijs -------------------------------------------------------------------------------- /test/g410a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g410a.ijs -------------------------------------------------------------------------------- /test/g410i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g410i.ijs -------------------------------------------------------------------------------- /test/g410p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g410p.ijs -------------------------------------------------------------------------------- /test/g410s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g410s.ijs -------------------------------------------------------------------------------- /test/g411.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g411.ijs -------------------------------------------------------------------------------- /test/g412.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g412.ijs -------------------------------------------------------------------------------- /test/g420.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420.ijs -------------------------------------------------------------------------------- /test/g420ce.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420ce.ijs -------------------------------------------------------------------------------- /test/g420fg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420fg.ijs -------------------------------------------------------------------------------- /test/g420r2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420r2.ijs -------------------------------------------------------------------------------- /test/g420stch.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420stch.ijs -------------------------------------------------------------------------------- /test/g420t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g420t.ijs -------------------------------------------------------------------------------- /test/g421.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421.ijs -------------------------------------------------------------------------------- /test/g421c.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421c.ijs -------------------------------------------------------------------------------- /test/g421d.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421d.ijs -------------------------------------------------------------------------------- /test/g421e.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421e.ijs -------------------------------------------------------------------------------- /test/g421i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421i.ijs -------------------------------------------------------------------------------- /test/g421p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421p.ijs -------------------------------------------------------------------------------- /test/g421t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g421t.ijs -------------------------------------------------------------------------------- /test/g422.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422.ijs -------------------------------------------------------------------------------- /test/g422os.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422os.ijs -------------------------------------------------------------------------------- /test/g422rk.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422rk.ijs -------------------------------------------------------------------------------- /test/g422sort.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422sort.ijs -------------------------------------------------------------------------------- /test/g422sort1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422sort1.ijs -------------------------------------------------------------------------------- /test/g422tao.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g422tao.ijs -------------------------------------------------------------------------------- /test/g430.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430.ijs -------------------------------------------------------------------------------- /test/g430a2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430a2.ijs -------------------------------------------------------------------------------- /test/g430avg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430avg.ijs -------------------------------------------------------------------------------- /test/g430b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430b.ijs -------------------------------------------------------------------------------- /test/g430d.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430d.ijs -------------------------------------------------------------------------------- /test/g430fin.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430fin.ijs -------------------------------------------------------------------------------- /test/g430inv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g430inv.ijs -------------------------------------------------------------------------------- /test/g431.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g431.ijs -------------------------------------------------------------------------------- /test/g431a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g431a.ijs -------------------------------------------------------------------------------- /test/g432.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g432.ijs -------------------------------------------------------------------------------- /test/g4x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g4x.ijs -------------------------------------------------------------------------------- /test/g4x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g4x5.ijs -------------------------------------------------------------------------------- /test/g500.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g500.ijs -------------------------------------------------------------------------------- /test/g502.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g502.ijs -------------------------------------------------------------------------------- /test/g510.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g510.ijs -------------------------------------------------------------------------------- /test/g520.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g520.ijs -------------------------------------------------------------------------------- /test/g520b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g520b.ijs -------------------------------------------------------------------------------- /test/g520p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g520p.ijs -------------------------------------------------------------------------------- /test/g521.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g521.ijs -------------------------------------------------------------------------------- /test/g522.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g522.ijs -------------------------------------------------------------------------------- /test/g530.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g530.ijs -------------------------------------------------------------------------------- /test/g530t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g530t.ijs -------------------------------------------------------------------------------- /test/g531.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g531.ijs -------------------------------------------------------------------------------- /test/g532.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g532.ijs -------------------------------------------------------------------------------- /test/g5x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x.ijs -------------------------------------------------------------------------------- /test/g5x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x0.ijs -------------------------------------------------------------------------------- /test/g5x1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x1.ijs -------------------------------------------------------------------------------- /test/g5x2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x2.ijs -------------------------------------------------------------------------------- /test/g5x30.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x30.ijs -------------------------------------------------------------------------------- /test/g5x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x4.ijs -------------------------------------------------------------------------------- /test/g5x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x5.ijs -------------------------------------------------------------------------------- /test/g5x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x6.ijs -------------------------------------------------------------------------------- /test/g5x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g5x7.ijs -------------------------------------------------------------------------------- /test/g600.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g600.ijs -------------------------------------------------------------------------------- /test/g600ip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g600ip.ijs -------------------------------------------------------------------------------- /test/g601.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g601.ijs -------------------------------------------------------------------------------- /test/g602.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g602.ijs -------------------------------------------------------------------------------- /test/g610.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g610.ijs -------------------------------------------------------------------------------- /test/g612.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g612.ijs -------------------------------------------------------------------------------- /test/g620.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g620.ijs -------------------------------------------------------------------------------- /test/g620a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g620a.ijs -------------------------------------------------------------------------------- /test/g621.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g621.ijs -------------------------------------------------------------------------------- /test/g622.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g622.ijs -------------------------------------------------------------------------------- /test/g630.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g630.ijs -------------------------------------------------------------------------------- /test/g631.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g631.ijs -------------------------------------------------------------------------------- /test/g631c.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g631c.ijs -------------------------------------------------------------------------------- /test/g632.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g632.ijs -------------------------------------------------------------------------------- /test/g640.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g640.ijs -------------------------------------------------------------------------------- /test/g640k.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g640k.ijs -------------------------------------------------------------------------------- /test/g640r.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g640r.ijs -------------------------------------------------------------------------------- /test/g641.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g641.ijs -------------------------------------------------------------------------------- /test/g6x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g6x.ijs -------------------------------------------------------------------------------- /test/g6x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g6x0.ijs -------------------------------------------------------------------------------- /test/g6x14.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g6x14.ijs -------------------------------------------------------------------------------- /test/g7x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g7x.ijs -------------------------------------------------------------------------------- /test/g7x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g7x5.ijs -------------------------------------------------------------------------------- /test/g7x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g7x6.ijs -------------------------------------------------------------------------------- /test/g8x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g8x.ijs -------------------------------------------------------------------------------- /test/g9x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g9x.ijs -------------------------------------------------------------------------------- /test/g9x40.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/g9x40.ijs -------------------------------------------------------------------------------- /test/ga.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/ga.ijs -------------------------------------------------------------------------------- /test/gassert.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gassert.ijs -------------------------------------------------------------------------------- /test/gb.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gb.ijs -------------------------------------------------------------------------------- /test/gbpar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gbpar.ijs -------------------------------------------------------------------------------- /test/gc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gc.ijs -------------------------------------------------------------------------------- /test/gchar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gchar.ijs -------------------------------------------------------------------------------- /test/gcompsc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gcompsc.ijs -------------------------------------------------------------------------------- /test/gct.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gct.ijs -------------------------------------------------------------------------------- /test/gctrl.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gctrl.ijs -------------------------------------------------------------------------------- /test/gd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gd.ijs -------------------------------------------------------------------------------- /test/gddot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gddot.ijs -------------------------------------------------------------------------------- /test/gdll.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gdll.ijs -------------------------------------------------------------------------------- /test/gdll_df.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gdll_df.ijs -------------------------------------------------------------------------------- /test/ge.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/ge.ijs -------------------------------------------------------------------------------- /test/gebar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gebar.ijs -------------------------------------------------------------------------------- /test/gesc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gesc.ijs -------------------------------------------------------------------------------- /test/gf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gf.ijs -------------------------------------------------------------------------------- /test/gfft.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gfft.ijs -------------------------------------------------------------------------------- /test/gfor.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gfor.ijs -------------------------------------------------------------------------------- /test/gft.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gft.ijs -------------------------------------------------------------------------------- /test/ggoto.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/ggoto.ijs -------------------------------------------------------------------------------- /test/gh.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gh.ijs -------------------------------------------------------------------------------- /test/gi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gi.ijs -------------------------------------------------------------------------------- /test/gi0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gi0.ijs -------------------------------------------------------------------------------- /test/gibs.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gibs.ijs -------------------------------------------------------------------------------- /test/gibst.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gibst.ijs -------------------------------------------------------------------------------- /test/gicap.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gicap.ijs -------------------------------------------------------------------------------- /test/gicap2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gicap2.ijs -------------------------------------------------------------------------------- /test/gico.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gico.ijs -------------------------------------------------------------------------------- /test/giconv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/giconv.ijs -------------------------------------------------------------------------------- /test/gif.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gif.ijs -------------------------------------------------------------------------------- /test/gimaxmin.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gimaxmin.ijs -------------------------------------------------------------------------------- /test/gintdiv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gintdiv.ijs -------------------------------------------------------------------------------- /test/gintg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gintg.ijs -------------------------------------------------------------------------------- /test/gintovfl.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gintovfl.ijs -------------------------------------------------------------------------------- /test/giph.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/giph.ijs -------------------------------------------------------------------------------- /test/gipht.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gipht.ijs -------------------------------------------------------------------------------- /test/giscode.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/giscode.ijs -------------------------------------------------------------------------------- /test/git.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/git.ijs -------------------------------------------------------------------------------- /test/gix.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gix.ijs -------------------------------------------------------------------------------- /test/gj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gj.ijs -------------------------------------------------------------------------------- /test/glapack.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/glapack.ijs -------------------------------------------------------------------------------- /test/glco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/glco.ijs -------------------------------------------------------------------------------- /test/gldot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gldot.ijs -------------------------------------------------------------------------------- /test/glocale.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/glocale.ijs -------------------------------------------------------------------------------- /test/gmbx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx.ijs -------------------------------------------------------------------------------- /test/gmbx0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx0.ijs -------------------------------------------------------------------------------- /test/gmbx1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx1.ijs -------------------------------------------------------------------------------- /test/gmbx2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx2.ijs -------------------------------------------------------------------------------- /test/gmbx3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx3.ijs -------------------------------------------------------------------------------- /test/gmbx4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx4.ijs -------------------------------------------------------------------------------- /test/gmbx5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx5.ijs -------------------------------------------------------------------------------- /test/gmbx6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbx6.ijs -------------------------------------------------------------------------------- /test/gmbxah.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxah.ijs -------------------------------------------------------------------------------- /test/gmbxip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxip.ijs -------------------------------------------------------------------------------- /test/gmbxqz.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxqz.ijs -------------------------------------------------------------------------------- /test/gmbxx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxx.ijs -------------------------------------------------------------------------------- /test/gmbxx1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxx1u.ijs -------------------------------------------------------------------------------- /test/gmbxx1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmbxx1w.ijs -------------------------------------------------------------------------------- /test/gmean.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmean.ijs -------------------------------------------------------------------------------- /test/gmemo.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmemo.ijs -------------------------------------------------------------------------------- /test/gmmf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmmf.ijs -------------------------------------------------------------------------------- /test/gmmf1s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmmf1s.ijs -------------------------------------------------------------------------------- /test/gmmf1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmmf1u.ijs -------------------------------------------------------------------------------- /test/gmmf1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmmf1w.ijs -------------------------------------------------------------------------------- /test/gmnom.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gmnom.ijs -------------------------------------------------------------------------------- /test/gn.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gn.ijs -------------------------------------------------------------------------------- /test/gnan.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gnan.ijs -------------------------------------------------------------------------------- /test/gnum.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gnum.ijs -------------------------------------------------------------------------------- /test/gnvv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gnvv.ijs -------------------------------------------------------------------------------- /test/go.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/go.ijs -------------------------------------------------------------------------------- /test/goi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/goi.ijs -------------------------------------------------------------------------------- /test/goox.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/goox.ijs -------------------------------------------------------------------------------- /test/gop.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gop.ijs -------------------------------------------------------------------------------- /test/gos.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gos.ijs -------------------------------------------------------------------------------- /test/gparse.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gparse.ijs -------------------------------------------------------------------------------- /test/gpco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpco.ijs -------------------------------------------------------------------------------- /test/gpco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpco2.ijs -------------------------------------------------------------------------------- /test/gpcoinv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpcoinv.ijs -------------------------------------------------------------------------------- /test/gpdd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpdd.ijs -------------------------------------------------------------------------------- /test/gpi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpi.ijs -------------------------------------------------------------------------------- /test/gpick.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpick.ijs -------------------------------------------------------------------------------- /test/gpoly.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gpoly.ijs -------------------------------------------------------------------------------- /test/gq.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gq.ijs -------------------------------------------------------------------------------- /test/gq101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gq101.ijs -------------------------------------------------------------------------------- /test/gq132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gq132.ijs -------------------------------------------------------------------------------- /test/gq201.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gq201.ijs -------------------------------------------------------------------------------- /test/gqco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gqco.ijs -------------------------------------------------------------------------------- /test/gqnonrat.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gqnonrat.ijs -------------------------------------------------------------------------------- /test/gr.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gr.ijs -------------------------------------------------------------------------------- /test/gr1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gr1.ijs -------------------------------------------------------------------------------- /test/grefcount.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/grefcount.ijs -------------------------------------------------------------------------------- /test/gregex.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gregex.ijs -------------------------------------------------------------------------------- /test/gs.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gs.ijs -------------------------------------------------------------------------------- /test/gsco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco.ijs -------------------------------------------------------------------------------- /test/gsco1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco1.ijs -------------------------------------------------------------------------------- /test/gsco1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco1u.ijs -------------------------------------------------------------------------------- /test/gsco1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco1w.ijs -------------------------------------------------------------------------------- /test/gsco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco2.ijs -------------------------------------------------------------------------------- /test/gsco2u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco2u.ijs -------------------------------------------------------------------------------- /test/gsco2w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsco2w.ijs -------------------------------------------------------------------------------- /test/gscou.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gscou.ijs -------------------------------------------------------------------------------- /test/gsdot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsdot.ijs -------------------------------------------------------------------------------- /test/gselect.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gselect.ijs -------------------------------------------------------------------------------- /test/gsp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp.ijs -------------------------------------------------------------------------------- /test/gsp0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp0.ijs -------------------------------------------------------------------------------- /test/gsp000.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp000.ijs -------------------------------------------------------------------------------- /test/gsp1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp1.ijs -------------------------------------------------------------------------------- /test/gsp100.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp100.ijs -------------------------------------------------------------------------------- /test/gsp101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp101.ijs -------------------------------------------------------------------------------- /test/gsp102.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp102.ijs -------------------------------------------------------------------------------- /test/gsp110.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp110.ijs -------------------------------------------------------------------------------- /test/gsp111.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp111.ijs -------------------------------------------------------------------------------- /test/gsp112.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp112.ijs -------------------------------------------------------------------------------- /test/gsp120.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp120.ijs -------------------------------------------------------------------------------- /test/gsp122.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp122.ijs -------------------------------------------------------------------------------- /test/gsp130.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp130.ijs -------------------------------------------------------------------------------- /test/gsp2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp2.ijs -------------------------------------------------------------------------------- /test/gsp221.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp221.ijs -------------------------------------------------------------------------------- /test/gsp222.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp222.ijs -------------------------------------------------------------------------------- /test/gsp231.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp231.ijs -------------------------------------------------------------------------------- /test/gsp320.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp320.ijs -------------------------------------------------------------------------------- /test/gsp321.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp321.ijs -------------------------------------------------------------------------------- /test/gsp322.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp322.ijs -------------------------------------------------------------------------------- /test/gsp331.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp331.ijs -------------------------------------------------------------------------------- /test/gsp400.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp400.ijs -------------------------------------------------------------------------------- /test/gsp410.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp410.ijs -------------------------------------------------------------------------------- /test/gsp412.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp412.ijs -------------------------------------------------------------------------------- /test/gsp420.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp420.ijs -------------------------------------------------------------------------------- /test/gsp421.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp421.ijs -------------------------------------------------------------------------------- /test/gsp422.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp422.ijs -------------------------------------------------------------------------------- /test/gsp431.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp431.ijs -------------------------------------------------------------------------------- /test/gsp432.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp432.ijs -------------------------------------------------------------------------------- /test/gsp520.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp520.ijs -------------------------------------------------------------------------------- /test/gsp520sd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp520sd.ijs -------------------------------------------------------------------------------- /test/gsp520ss.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp520ss.ijs -------------------------------------------------------------------------------- /test/gsp521.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp521.ijs -------------------------------------------------------------------------------- /test/gsp530i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp530i.ijs -------------------------------------------------------------------------------- /test/gsp530l.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp530l.ijs -------------------------------------------------------------------------------- /test/gsp530n.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp530n.ijs -------------------------------------------------------------------------------- /test/gsp531.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp531.ijs -------------------------------------------------------------------------------- /test/gsp5x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp5x5.ijs -------------------------------------------------------------------------------- /test/gsp6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp6.ijs -------------------------------------------------------------------------------- /test/gsp600.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp600.ijs -------------------------------------------------------------------------------- /test/gsp600a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gsp600a.ijs -------------------------------------------------------------------------------- /test/gspi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gspi.ijs -------------------------------------------------------------------------------- /test/gspj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gspj.ijs -------------------------------------------------------------------------------- /test/gspo.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gspo.ijs -------------------------------------------------------------------------------- /test/gspr.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gspr.ijs -------------------------------------------------------------------------------- /test/gspx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gspx.ijs -------------------------------------------------------------------------------- /test/gss.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gss.ijs -------------------------------------------------------------------------------- /test/gstack.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gstack.ijs -------------------------------------------------------------------------------- /test/gt.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gt.ijs -------------------------------------------------------------------------------- /test/gthrow.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gthrow.ijs -------------------------------------------------------------------------------- /test/gtrain.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gtrain.ijs -------------------------------------------------------------------------------- /test/gtry.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gtry.ijs -------------------------------------------------------------------------------- /test/gu.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gu.ijs -------------------------------------------------------------------------------- /test/gu0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gu0.ijs -------------------------------------------------------------------------------- /test/gunderai.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gunderai.ijs -------------------------------------------------------------------------------- /test/gwhile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gwhile.ijs -------------------------------------------------------------------------------- /test/gx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gx.ijs -------------------------------------------------------------------------------- /test/gx132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gx132.ijs -------------------------------------------------------------------------------- /test/gxco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gxco.ijs -------------------------------------------------------------------------------- /test/gxco1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gxco1.ijs -------------------------------------------------------------------------------- /test/gxco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gxco2.ijs -------------------------------------------------------------------------------- /test/gxinf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/gxinf.ijs -------------------------------------------------------------------------------- /test/test.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/test.htm -------------------------------------------------------------------------------- /test/tsu.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/test/tsu.ijs -------------------------------------------------------------------------------- /unix/libedit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/unix/libedit.a -------------------------------------------------------------------------------- /unix/libedit64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/unix/libedit64.a -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/j-playground/HEAD/version.txt --------------------------------------------------------------------------------