How does that change the spelling? Capitalization maybe, but spelling?skywalk wrote:Don't change the name...change the spelling.
From PureBasic
To PurebasiC
cheers
How does that change the spelling? Capitalization maybe, but spelling?skywalk wrote:Don't change the name...change the spelling.
From PureBasic
To PurebasiC
thank you.Kuron wrote:You have some artistic talent.
Code: Select all
If Asc("C") = Asc("c")
Debug "hooray for rsts"
Else
Debug "cheers"
EndIf
As I said - spelling no, capitalization yesskywalk wrote:@rsts...
You got me...but is this a programmer's forum?
I really like the suggested C dump of PureBasiC code.Code: Select all
If Asc("C") = Asc("c") Debug "hooray for rsts" Else Debug "cheers" EndIf
-Steve
Code: Select all
If ucase("PureBasic") = Ucase("PurebasiC") and lcase("PureBasic") = lcase("PurebasiC")
Debug "hooray for rsts"
Else
Debug "cheers"
EndIf
Finaly someone feels bad about me. I must use C on iPhone and i hate it, i realy do. It's ugly and bloated.jamba wrote:I do feel bad for anyone who uses C !
I don't know if it's any help to you but you can program the iPhone with Lua: http://developer.anscamobile.com/ (and no it doesn't need to be jailbroken).Thorium wrote:Finaly someone feels bad about me. I must use C on iPhone and i hate it, i realy do.
I mean the source code gets bloated not the resulting executable. For example every API introduces it's own datatypes which are just the basic c datatypes with other names. That does not make any sense to me and just makes the source look more complicated than it is. For example on OpenGL you use "GLFloat" for floats but it's just the same as "float" you can just write "float" instead of "GLFloat". Maybe that should improve readability but it just don't. And there are tons of such things.milan1612 wrote:then that
it's not bloated![]()