Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
gle-manual.pdf | 2022-04-13 | 4.4 MB | |
gle-4.3.3-win64s.zip | 2022-04-13 | 16.2 MB | |
gle-4.3.3-win64s.exe | 2022-04-13 | 13.5 MB | |
gle-4.3.3-win64s.7z | 2022-04-13 | 12.4 MB | |
gle-4.3.3-win64.zip | 2022-04-13 | 15.4 MB | |
gle-4.3.3-win64.exe | 2022-04-13 | 12.9 MB | |
gle-4.3.3-win64.7z | 2022-04-13 | 12.0 MB | |
gle-4.3.3-win32s.zip | 2022-04-13 | 14.0 MB | |
gle-4.3.3-win32s.exe | 2022-04-13 | 12.0 MB | |
gle-4.3.3-win32s.7z | 2022-04-13 | 11.0 MB | |
gle-4.3.3-win32.zip | 2022-04-13 | 13.4 MB | |
gle-4.3.3-win32.exe | 2022-04-13 | 11.4 MB | |
gle-4.3.3-win32.7z | 2022-04-13 | 10.7 MB | |
gle-4.3.3-Linux.zip | 2022-04-13 | 18.3 MB | |
gle-4.3.3-Linux.7z | 2022-04-13 | 14.4 MB | |
gle-4.3.3-Darwin.zip | 2022-04-13 | 17.2 MB | |
gle-4.3.3-Darwin.dmg | 2022-04-13 | 16.6 MB | |
gle-4.3.3-Darwin.7z | 2022-04-13 | 13.8 MB | |
ChangeLog.txt | 2022-04-13 | 56.7 kB | |
README.md | 2022-04-13 | 1.2 kB | |
v4.3.3 source code.tar.gz | 2022-04-13 | 1.8 MB | |
v4.3.3 source code.zip | 2022-04-13 | 2.1 MB | |
Totals: 22 Items | 243.9 MB | 0 |
4.3.3 (April 2022) - changed www.gle-graphics.org to glx.sourceforge.net everywhere - replace old ghostscript URL with www.ghostscript.com -Bug Fix: error was thrown if user called a subroutine as an r-value that had default arguments and did not specify all the arguments ! ! -- test which caused error for incorrect number of arguments when subroutine is ! an r-value in an expression. ! sub mysum a b default b 4 return a+b end sub ! try stand alone subroutine call mysum(2,6) ! ok mysum(2) ! ok mysum 2 4 ! ok mysum 2 ! now use subroutine as an r-value ! ok e = mysum(2,3) print e ! the following threw this error but is now fixed !>> test.gle (24) |e = mysum(2)| !>> ^ !>> Error: incorrect number of parameters in call to 'MYSUM': found 1, expected 2 e = mysum(2) print e