Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,2 @@
#!/usr/local/bin/jsish
load('byjsi.so');

View file

@ -0,0 +1,26 @@
identification division.
program-id. sample as "Jsi_Initbyjsi".
environment division.
configuration section.
special-names.
call-convention 0 is extern.
repository.
function all intrinsic.
data division.
linkage section.
01 jsi-interp usage pointer.
01 rel usage binary-long.
procedure division using by value jsi-interp rel.
sample-main.
if rel equal zero then
display "GnuCOBOL from jsish load of " module-source()
" and cobc -m -fimplicit-init" upon syserr
goback
end-if
display "Called again with: " jsi-interp ", " rel upon syserr
goback.
end program sample.