MacOs is not very much popular Os in Europe or is not very much used in Europe.
bringing the Oxygen closer to that follow-up thathmm ...what that means ?
I think it might be possible to standardise Basic as a scripting language ...
Quote from: Chales PeggeI think it might be possible to standardise Basic as a scripting language ...
BASIC's only future is in the form of a typeless scripting language with a mature syntax everyone knows how to use.
Most BASIC efforts today are toys that are never fully implemented.
there are still many many VBA users for professional useQuotebringing the Oxygen closer to that follow-up thathmm ...what that means ?
No there is no problem with that ..i mean languageMy English is zero.
my english is sometimes too crappy ;D
VBA hmmm i never use that ...and well BASIC is not language for proffesionals
i think ::)
but what differentiates Basic from C language?
Quote
but what differentiates Basic from C language?
Not much. I think I've already made that point with the C BASIC gcc preprocessor include.
First of all ScriptBasic is ScriptBasic and not usual traditional Basic used as educational
programming language and is not very much for Windows
i mean is better than crap called python.
Yeah why C -- C syntax and complete language is oriented to as much as posible
better transformation to machine language and that is why is very fast.
Also i dont know why you insist on VBA - or basic from Office pack...is that VBA?
If you whish to use or to try Oxygen Basic then download package and try...
asking questions before you try is almost useless..because i really dont know for
any Oxygen basic example that work with VBA or similar.
I have already cleaned out old syntax and some experimental features which proved to be unuseful. As far as I can tell, I was the only one using those features, and it only affected a small number of the 1400+ examples included with o2basic.
he NSA have a facility in Utah, well suited to this enterprise
It's perfect for a pyramid scheme.
basically I use only Or, And, Xor, Not, and bitcount,
type i128 int i1,i2,i3,i4
macro i128_op(a, p)
macro .ops(p,a)
ac.i1 p a.i1
ac.i2 p a.i2
ac.i3 p a.i3
ac.i4 p a.i4
end macro
macro ."save"(a)
i128 ac
a.i1=ac.i1
a.i2=ac.i2
a.i3=ac.i3
a.i4=ac.i4
end macro
macro ."load"(a)
dim i128 ac
i128_op.ops(=,a)
end macro
macro ."and"(a)
i128_op.ops(and=,a)
end macro
macro ."or"(a)
i128_op.ops(or=,a)
end macro
macro ."xor"(a)
i128_op.ops(xor=,a)
end macro
macro ."not"(a)
i128_op.ops(=not,a)
end macro
end macro
'TEST
dim u,v,w,x as i128
u=v and (w or x)