|
Agena v. 7.9.7 (5/9/2026, Alexander Walz) |
Readme/What's new |
agena >>
`The Power of Procedural Programming`
7.9.7 Deimos, September 05, 2026
- All `ads`, `bfield`, `binary` and `com` package functions can now be called OOP-style, `rbtree.iterate` and `rbtree.purge`,
too.
- `ads.getall` has been changed: If any option is given, and if it is a sequence, set or table, then the contents of the ADS
sequence will be added to it, meaning that if the structure already includes elements, they will be preserved.
- `ads.sizeof` now returns the maximum capacity of a database file as a second result.
- ADS databases can now store numbers. Just pass the new `base=number` option to ads.new and write the numbers with
`ads.write`:
> import ads
> ads.new('test.agb', base = number);
> fh := ads.open('test.agb');
> for i to 25 do
> fh@write(i, ((i - 1) % 222) + 33)
> od;
> fh@getall([]):
[1, 33, 2, 34, 3, 35, 4, 36, 5, 37, 6, 38, 7, 39, 8, 40, 9, 41, 10, 42, 11, 43,
12, 44, 13, 45, 14, 46, 15, 47, 16, 48, 17, 49, 18, 50, 19, 51, 20, 52, 21, 53,
22, 54, 23, 55, 24, 56, 25, 57]
> fh@@close();
- With string sequences, `ads.write` ignored the third and following arguments. This has been fixed.
- `ads.write` when expanding a database registered the wrong new maximum capacity. This has been fixed. You can now also store
strings of any size, they are no longer cut off after the 30th character. The function now also no longer leaves behind
memory leaks with databases and lists.
- `ads.index` returned wrong results with string sequences. This has been fixed.
- `ads.createbase` has been renamed to `ads.new`. An alias has been provided to ensure backward compatibility.
- `ads.close`, `ads.new` and `ads.open` now print debugging information in case of failure.
- When given an invalid number, `char` now includes it in the error message.
- At exit, Agena now cleans up the readline history. |
|
Run Agena Scripts Easily (rase) v. 7.9.7 (5/9/2026, Alexander Walz) |
Readme/What's new |
rase - Run Agena Scripts Easily in Windows NT 4.0 or later and in OS/2.
Please refer to the explanations in `example.agn`.
For a quick demo, unpack all the files into a new, fresh directory, change into this directory and run the `example.exe` file
in an command shell (Windows) or `example.cmd` (OS/2) as follows:
example 1 2
There is also a utility called `whereis` which searches for a file in a path:
whereis /r /a "agena.*" c:/agena
Another one prints drive information:
drive c:
A script printing information on installed memory:
memory
Finally, cpuinfo prints various information on the CPU:
cpuinfo /a
In your operating system, you may want to add the path to the rase directory to your PATH system environment variable.
Credit: The implementation is based on https://www.cs.usfca.edu/~galles/cs420/lecture/LuaLectures/LuaAndC.html,
written by: Associate Professor David Galles, Department of Computer Science, University of San Francisco, CA 94117.
For compilation hints, check the top of the rase.c source file.
----------------------------------------------------------------
# READ.ME and DEMO Run Agena Scripts Easily (rase) for Windows
/*
This file shows how to execute Agena scripts in Windows NT 4.0 and later without passing the script and its arguments
to the actual Agena interpreter.
We won't call "agena example.agn 1 2" from the commandline, but just enter "example 1 2" in the NT shell.
In OS/2 we use the batch script example.cmd to execute a script.
Please make sure that the following files are now in one and the same directory:
example.agn (or your favourite script filename)
example.exe (Windows only, or your favourite executable filename)
agena.exe (in OS/2 only)
agena.dll (do not change the filename)
library.agn (do not change the filename)
libgcc_s_dw2-1.dll (Windows only, do not change the filename)
libmingwex-4.dll (Windoes only, do not change the filename)
In Windows, rename the following files in this ZIP file to your favourite name:
example.exe -> yourfavouritename.exe
example.agn -> yourfavouritename.agn
In OS/2, rename the following files in this ZIP file to your favourite name:
example.cmd -> yourfavouritename.cmd
example.agn -> yourfavouritename.agn
and edit the *.agn file according to your need. The *.exe or *.cmd file will launch your *.agn script file of the same name.
For a more elobarate script that locates files, links or folders in a directory, check the `whereis.agn` script.
For a script that prints drive information, check the `drive.agn` script. */
print('\nDemo using NO explicit function by referring to the \`args\' table:');
print('-----------------------------------------------------------------\n');
print('Number of arguments:', size(args));
# all arguments (all strings )are available in the args table, including the name of the script at index 1
print('Arguments passed: ', args);
# we convert the command-line arguments to numbers
local x, y := tonumber(args[2]), tonumber(args[3]);
if x :: number and y :: number then
print('Test: ', x & ' minus ' & y & ' is ' & (x - y));
print('Test: ', 'sqrt(' & x & ' + ' & y & ') is ' & sqrt(x + y))
fi;
/* In Windows, we _alternatively_ define a function of the same name as the executable
(w/o the file suffix, `example` in this case). This function will then be called
by the executable `example.exe`.
Just enter the following statement in an NT shell (cmd.com) and see what will happen:
example 1 2
*/
example := proc(?) is # this function will be automatically called by the executable
print('\nDemo using explicit function of same name \& \`nargs\' and the \`varargs\' table:');
print('----------------------------------------------------------------------------\n');
print('Number of arguments:', nargs);
print('Arguments passed: ', ?);
local x, y := tonumber(?[1]), tonumber(?[2]);
if x :: number and y :: number then
print('Test: ', x & ' minus ' & y & ' is ' & (x - y));
print('Test: ', 'sqrt(' & x & ' + ' & y & ') is ' & sqrt(x + y))
fi
end;
/* The output should be:
C:\agena\extract>example 1 2
Demo using NO explicit function by referring to the `args' table:
-----------------------------------------------------------------
Number of arguments: 3
Arguments passed: [example, 1, 2]
Test: 1 minus 2 is -1
Test: sqrt(1 + 2) is 1.7320508075689
Demo using explicit function of same name & `nargs' and the `varargs' table:
----------------------------------------------------------------------------
Number of arguments: 3
Arguments passed: [example, 1, 2]
Test: 1 minus 2 is -1
Test: sqrt(1 + 2) is 1.7320508075689
*/
|
|
Agena v. 7.8.10 (21/8/2026, Alexander Walz) |
Readme/What's new |
agena >>
`The Power of Procedural Programming`
7.8.10 Phobos, August 21, 2026
- The new function `strings.hirschberg` takes two strings s and t and returns their global alignment in three results:
the edit sequence, the alignment of s and the alignment of t. The function uses the memory-friendly Hirschberg algorithm
which yields a total structural space complexity of strictly O(N + M).
> strings.hirschberg('Alex', 'Axelander'):
=++=+++=! A l ex Axelander
> strings.hirschberg('Axelander', 'Alex'):
=--=---=! Axelander A l ex
- When given the -b, -q, -Q command-line options and with multiple returns, the pretty-printer wrote the last return only, and
this multiple times. The same happened when setting the 'enclose', 'encloseback' or 'enclosedouble' switches to true via a
call to `environ.kernel`. This has all been fixed.
- This release has been successfully Valgrind-tested on x86 Linux. |
Commenti
Alexander Walz
Sab, 13/05/2017 - 20:06
Collegamento permanente
Hello,
Aggiungi un commento