Hi,
i can create a file with name ∆r with vim fine
and can )copy ∆r fine into the apl ws
but when i use following to create the file on disk from inside apl with
h ← 'w' ⎕fio[3] '∆r'
rs←'∆r' ⎕fio[23] h
rs←⎕fio[4] h
the file name created on disk is ^Fr and not ∆r the real one charact
Hi Jürgen,
i was able to get )copy working with libapl
i had to define ⎕pw←80 in the fpc program right after init_libapl() to get rid
of the divbyzero runtime exception from apl_exec(')copy aa.apl');
if you remember, i had to originally put a ⎕pw←80 in src/UCS_strings.cc (for
libapl.so compi
Hi,
to get a c library (libapl/apl_exec) working with fpc/freepascal has been made
pretty easy - to get it working correctly took Jürgen's input
i also had to add ⎕pw←80 in two places (in src/UCS_strings.cc just to get
libapl to run and right after init_libapl((); in the main fpc libapl pgm to