The + and & operators are not the same, they cannot be used interchangeably. You cannot add two numbers using the & operator. Having two operators that are aliases for each other is just insane and unnecessary bloat.
Printable View
Isn't part of the problem is that there is no 'standard' for the Basic language? C/C++ are ISO standard(s), Fortran has it's standard. But what's Basic? I could 'invent' a new language and call it say zBasic and it could look quite different to existing versions of 'Basic' but still be called 'Basic'. I first came across this issue when I wrote Basic applications for mini-computers in the 1970's/80' and each version was different in some way. I don't program in Basic any more, but isn't it time that 'Basic' became a standard?
I am really for and against that idea, I proposed it earlier, my suggestion was a ECMA-style group that decided on the changes, direction for the language. However, given the characters here and the levels of opposition to almost anything proposed it might be a slanging match.
However, with Wayne seemingly running the show as an intelligent, benign and benevolent dictator (no slur or criticism intended) we are probably in a good place, ie. he listens, he knows his stuff but ultimately we don't have much of a choice. It works.
With a properly constituted group - it requires recognition to work, I mean if we constituted a group, no-one has to listen, anyone could still do what they wanted. The "BASIC advisory board" might be the best we could come up with a voting method to decide things. That is roughly what we are creating here.
Yes - it needs to be done via your National Member. See https://isoupdate.com/resources/6-st...-iso-standard/
Hold the front page! Stop the Presses!!
There is an ANSI/ISO Basic standard - INCITS/ISO/IEC 10279-1991 (R2005)
https://www.iso.org/standard/18321.html
https://webstore.ansi.org/standards/...102791991r2005
However I don't know how useful these are due to their age. Perhaps those currently involved in Basic development might like to contact the ISO and find out what's happening re revision to the basic standard and how to contribute to its active development.
I remember the standardization process for C++. It was about as contentious, though much drier, than the discussion around TwinBasic. Following that came the revision of the C standard in 1999. You need an active process to keep those standards evolving.
or revolving in our case.
The Basic working group is WG8 under SC22 (C is WG14, C++ is WG21). Apparently, it is no longer active. See http://www.open-std.org/jtc1/sc22/
If anyone wants to pursue Basic standardisation, then I suggest in the first instance they contact the Chair of SC22 (which covers all computer languages) for information http://www.open-std.org/jtc1/sc22/docs/contacts
twinBASIC status update:
twinBASIC update January 2, 2022
Highlights include a feature to generate missing implementations, minor improvements to the Reference List UX, and some spirited debates.
Well based on the current state of the votes, it seems the language will remain unpolluted by the addition of aliases for the << and >> operators. So this issue has been resolved.
I know not everyone wanted this and I know a few people here have grown to hate me during this course of this conversation but I personally enjoyed the discussion. It was very enlightening. I just wish people wouldn't get so emotional. I also want you guys to know that despite your hatred for me, I hold no animosity in my heart towards any of you. I have no hate for baka or Eduardo. I respect you both but it doesn't mean I will just keel over and just agree with everything you say. I apologize if during the course of this I went too far but I do not apologize for my opinions and hopefully we can find a way to peacefully co-exist on these boards.
twinBASIC status update:
twinBASIC update January 9, 2022
Highlights include error messages that now match VBx, a twinBASIC Discord server, and a teaser about twinBASIC's potential as a VBA replacement.
I would like to see lambda functions as I did in M2000 Interpreter:
https://georgekarras.blogspot.com/20...-in-m2000.html
Each "lambda" function is an object which have two parts: The function and the list of closures.
We can define closures at the definition stage for lambda, and that will be new or copies of variables of same scope at the definition.
Also tuple: a=(1,2,3,4) like a=Array(1,2,3,4). The empty tuple: a=(,). One item tuple: a=(1,). We can use #functions like Print a#sum().
Also cons()
a=(1,2,3,4,5)
b=Cons(a, (6,7,8), a)
Print b
And car() and cdr()
a=((1,2), (3,4), (5, 6))
b=Car(a)
Print Car(b) ' 1
Print Car(Car(a)) ' 1
Print Cdr(Car(Cdr(Cdr(a)))) ' 6
Have you ever tried Common Lisp?
You have all of these requested features there unlike any BASIC language known to mankind :-))
cheers,
</wqw>
So, CAR and CDR is property of LISP?
I think BASIC must go higher, including these which I propose in previous reply.
As someone who's been wishing for a vb6 upgrade/replacement for well over a decade (not far off two actually) I really wish discussions about desired new features would just go away.
Until twinbasic can open all existing vb6 projects it's no more interesting to someone invested in vb6 than any other language.
I'm contributing to twinbasic, albeit only financially, but I'd prefer if people would leave Wayne to get on with the great job he's doing.
Once compatibility is achieved that's the time to start adding all the new goodies.
Wayne already ready made it very clear that new features must be considered up front. If it's put off for later, it may be far more difficult to implement them. Here is the post. More specifically he said:-
There is no getting away from this.
As someone who previously has been involved with OS and compiler development, I absolutely agree with this. Time spent on the design is time well spent and will almost certainly be recouped during the coding phase. Major changes to the design once significant coding has been done often requires large amounts of code to be thrown away and re-written - delaying the project beyond the small extra design time that would have been spent.The more complex the project (like TB), the more the need for up-front in-depth design before much production coding is undertaken. Not doing this is, IMO, a recipe for disaster and often helps to explain why some projects get so far and then no further and peter-out.
twinBASIC status update:
twinBASIC update January 16,2022
Highlights include the CompileIf attribute and IsObject function for generics, an experimental package manager, and 10 Guiding Principles of twinBASIC.
twinBASIC status update:
twinBASIC update January 23,2022
Highlights include the introduction of TWINPACKs and the TWINSERV package manager, IntelliSense improvements, and easier reporting of twinBASIC bugs.
twinBASIC status update:
twinBASIC update January 30,2022
Highlights include a sample project demonstrating the WaynesGrid control and a timeline update for the release of (some) native Win32 controls.
twinBASIC status update:
twinBASIC update February 6,2022
Highlights include the milestone release of WinForms functionality, control inheritance, ReadOnly class properties, and twinPACK updating documentation.
twinBASIC status update:
twinBASIC update February 13,2022
Highlights include a new Settings filter bar and WinForms Controls Package updates included by default with future twinBASIC extension updates.
twinBASIC status update:
twinBASIC update February 20,2022
Highlights include checkbox-style list boxes, native Winforms progress bar and image controls, and an option to align controls to grid in the form designer.
The current twinBASIC version is 0.14.28
twinBASIC status update:
twinBASIC update February 27,2022
Highlights include multiple form designer improvements and a *BIG* announcement about the future of the twinBASIC IDE.
The current twinBASIC version is 0.14.36
twinBASIC status update:
twinBASIC update March 6, 2022
Highlights include a sneak peek at the new twinBASIC IDE (currently under development) and a brief comparison between RAD Basic and twinBASIC.
A sneak peek at the new twinBASIC IDE...
New twinBASIC IDE
A simpler and more VB6-like IDE - available soon :)
twinBASIC programming just gets better and better :thumb:
twinBASIC status update:
twinBASIC update March 13,2022
Highlights include another sneak peek of the upcoming twinBASIC IDE and a special announcement regarding Access DevCon Vienna 2022.
twinBASIC status update:
twinBASIC update March 20,2022
Highlights include a cryptic update on the new IDE's release date and a possible twinBASIC solution to the oft-delayed Access modern browser control.
And the new IDE? "Not long to wait now, hang on in there 😁"
I thought about posting this on the TwinBASIC GitHub but due to it's very informal and imprecise nature, I think here is the better place to post it.
A video just came across my recommended videos in YouTube:-
https://www.youtube.com/watch?v=qvFG8J7SUDE
Now the video itself is not what I'm trying to direct attention to. It's a very light hearted video meant perhaps to elicit some laughs. What really caught my attention was the comments. I spent about 30 minutes just reading the comments. The comments were mostly centered on JavaScript of course but there were also but there were a number of comments and mini-discussions on how it compares to other languages.
It reminded me of this thread and a couple over on GitHub, particularly our fierce debates on how to attract outsiders and how people would feel about specific features and what should be included and what shouldn't. Reading the comment section of that video was like waking the pulse of the body of expectations modern programmers have for programming languages. I think it would be valuable just to casually browse the comments it to see what modern programmers like and what they don't like. I found it enlightening. There were some things that that even surprised me.
New twinBASIC IDE...
New twinBASIC IDE demo
Not long to wait now :)
twinBASIC programming just gets better and better
The expected release date of the new twinBASIC IDE is Tuesday 29th March
New twinBASIC IDE demo
Cool. ;)
twinBASIC status update:
twinBASIC update March 27,2022
Highlights include a release date for the twinBASIC IDE and plans to open-source the IDE's source code.
The twinBASIC IDE is scheduled for release on Tuesday, March 29, 2022
Attachment 184494
Whoa that was fast. How does Wayne do these things so quickly. I thought an IDE would have been at least a year away.
For the early birds... BETA 1 of the twinBASIC IDE is now available...