Page 1 of 2
0.0.16
Posted: Fri Sep 08, 2017 3:40 pm
by Mr. Kibernetik
File function #.writebyte will be added.
Re: 0.0.16
Posted: Fri Sep 08, 2017 4:51 pm
by Mr. Kibernetik
File function #.writeline will be added.
Re: 0.0.16
Posted: Sat Sep 09, 2017 12:34 pm
by Mr. Kibernetik
New function #.type will be added.
Re: 0.0.16
Posted: Sat Sep 09, 2017 11:38 pm
by Mr. Kibernetik
SPL will be able to work with huge numbers:
Code: Select all
n = 1/3
#.output("n=",n)
n = 2^1000
#.output("n=",n)
Output:
Code: Select all
n=0.333333333333333
n=10715086071862673209484250490600018105614048117055336074437503883703510511249361224931983788156958581275946729175531468251871452856923140435984577574698574803934567774824230985421074605062371141877954182153046474983581941267398767559165543946077062914571196477686542167660429831652624386837205668069376
Re: 0.0.16
Posted: Mon Sep 11, 2017 5:56 am
by Mr. Kibernetik
File function #.writebinary will be added.
Re: 0.0.16
Posted: Tue Sep 12, 2017 6:06 am
by Mr. Kibernetik
The version is published.
Re: 0.0.16
Posted: Fri Sep 15, 2017 2:08 pm
by rbytes
I have version 16, but the code for huge numbers is not producing the proper value for the second equation. I just get 0.
Re: 0.0.16
Posted: Fri Sep 15, 2017 2:42 pm
by Mr. Kibernetik
Thank you for your report.
What output do you get for this program?
Code: Select all
> i, 60..65
n = 2^i
#.output(i," ",n," ",#.type(n))
<
It should be:
Code: Select all
60 1152921504606846976 INTEGER
61 2305843009213693952 INTEGER
62 4611686018427387904 INTEGER
63 9223372036854775808 BIG
64 18446744073709551616 BIG
65 36893488147419103232 BIG
Re: 0.0.16
Posted: Fri Sep 15, 2017 3:23 pm
by rbytes
BIG does not work. The store says I have version 16
Re: 0.0.16
Posted: Fri Sep 15, 2017 3:28 pm
by rbytes
is there a place in the SPL app that shows the version number? Maybe the store made a publishing error.