There would be lots of high-value variables to process and wrestling with library bodges does not appeal to me. PureBasic's weakness is in the very area where I need it to be strong.
I imagine that the original motive for an all-low-precision-math language was to ...
A year ago I set out to write a novel calculator but could not get the precision I needed because the floating point values are only 32 bits and I need to use variables of at least 64bits, preferably 80bits. So I dropped PB. Blitz has the same restriction.
Fifteen pages of theory and practice of C++! I have not accustomed myself to C++, yet. I can see it stalking me, and I know I'll have to surrender to it eventually. But I can stave it off a bit longer with PureBasic for the desktop and BlitzBasic for full screen games ...
I wrote it the way I wrote it to demonstrate the problem. Having the output terminate prematurely shows the problem and where it occours.
I NEED to store these charaters, individally, in the array, not leaving any blanks. Not just to print them. I need the array to be intact so that I ...
This whole thing points up the reason there should be a parser in PB already!
Does Linux have an equivalent to WSH?
I want my super duper calculator to be as universal as possible.
I am pretending that the two math strings are unpredictable user input. The reason I did it the way I did it was that the strings break into irregular sized chunks. This means that the number of instances of s() cannot be known in advance. For instance, "14.582" is one chunk. it is ...
Hi Pupil, this makes your save routine fail... This problem is not confined to saving. Try windowing it in a string gadget. I wrote the little demo to show what happens when I try to separate a string into characters for analysis. Can you suggest a way of storing and manipulating strings that ...
I have come across a wierd problem in string disection. I wrote this bit of code to illustrate it ... Please notice that math_b has a pair of brackets. See what this does to the output!
; Disect a string into its constituent parts for parsing ... Dim s.s(64) ; hold the parts in this ...