I'm very happy what direction purebasic goes.
The C Backend opens it, that's really great!
Search found 58 matches
- Sun Feb 27, 2022 9:10 am
- Forum: Feature Requests and Wishlists
- Topic: Support for ARM-Linux
- Replies: 121
- Views: 59887
- Fri Jun 25, 2021 7:36 am
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 215296
Re: PureBasic 6.00 Alpha 2 released !
Me too, I'm waiting for the next alpha - this bug is fixed.
- Fri Apr 30, 2021 2:18 pm
- Forum: General Discussion
- Topic: Sneak Peek into Generated C Code Blog
- Replies: 8
- Views: 3972
Re: Sneak Peek into Generated C Code Blog
There was a talk about it in german forum too: https://www.purebasic.fr/german/viewtopic.php?f=1&t=32375
My conclusion:
Imagine that you can return from a procedure at multiple positions (that kinda sounds strange, but has nothing arousing).
In pb->asm you can do that with that jump marks ...
My conclusion:
Imagine that you can return from a procedure at multiple positions (that kinda sounds strange, but has nothing arousing).
In pb->asm you can do that with that jump marks ...
- Sun Apr 25, 2021 5:08 pm
- Forum: Announcement
- Topic: Blog post !
- Replies: 325
- Views: 125858
Re: Blog post !
Will we be able to procedurereturn structs?
In C it's possible, so that could be a thing, or?
In C it's possible, so that could be a thing, or?
- Sat Apr 24, 2021 8:11 pm
- Forum: Feature Requests and Wishlists
- Topic: Support for ARM-Linux
- Replies: 121
- Views: 59887
Re: Support for ARM-Linux
One thing for sure:
The C backend seems to be really promising!
I love this! It's exciting!
The C backend seems to be really promising!

I love this! It's exciting!
- Sat Apr 24, 2021 1:43 pm
- Forum: Feature Requests and Wishlists
- Topic: Support for ARM-Linux
- Replies: 121
- Views: 59887
Re: Support for ARM-Linux
I think the only good way to support ARM platforms with a Basic alike dialect would be a transpiler solution, aka Spiderbasic, but as target language C.
Take a look at nim-lang, it has C, C++, ObjC, JS targets - it's possible to write baremetal with it, you can turn off the gc and manage your data ...
- Sat Apr 24, 2021 12:24 pm
- Forum: Announcement
- Topic: Blog post !
- Replies: 325
- Views: 125858
Re: Blog post !
Hi!
I've just read about the plans to implement a c backend.
I enjoy!
I've just read about the plans to implement a c backend.
I enjoy!
- Thu Mar 28, 2019 11:41 am
- Forum: Off Topic
- Topic: Time to say goodby...
- Replies: 30
- Views: 10418
Re: Time to say goodby...
Arm devices are the future.IceSoft wrote:Smart phones be the future. PB doesn't support this devices.idle wrote:why?
I guess x86 will die or will be emulated on future arm devices.
- Fri May 13, 2016 5:19 pm
- Forum: Tricks 'n' Tips
- Topic: SoundEasy.pbi include file adds CreateSound() command
- Replies: 27
- Views: 15331
Re: SoundEasy.pbi include file adds CreateSound() command
Hi BasicallyPure,
I've used your code in my own little Morse Learning program:
http://forum.purebasic.com/english/view ... 27&t=65698
Have a nice day and thank you,
Gekko
I've used your code in my own little Morse Learning program:
http://forum.purebasic.com/english/view ... 27&t=65698
Have a nice day and thank you,
Gekko
- Fri May 13, 2016 5:14 pm
- Forum: Applications - Feedback and Discussion
- Topic: Minimorse - a learning program for interpreting ITU morse
- Replies: 1
- Views: 2529
Minimorse - a learning program for interpreting ITU morse
Hi!
I've written a small program to help learning morse code.
It's not finished, but usablel. It's missing special characters like Á...
Future versions will be edited inside this post here.
It features a REPL (read eval print loop - shell alike) for recognizing commands and text to morse.
It doesn ...
I've written a small program to help learning morse code.
It's not finished, but usablel. It's missing special characters like Á...
Future versions will be edited inside this post here.
It features a REPL (read eval print loop - shell alike) for recognizing commands and text to morse.
It doesn ...
- Thu May 12, 2016 10:04 pm
- Forum: Tricks 'n' Tips
- Topic: SoundEasy.pbi include file adds CreateSound() command
- Replies: 27
- Views: 15331
Re: SoundEasy.pbi include file adds CreateSound() command
Just for fun, uncomplete morse repl:
InitSound()
IncludeFile "SoundEasy.pbi"
EnableExplicit
Global speed.f = 0.1
Global speedms.f = speed * 1000
Global ditsnd.i = CreateSound(#PB_Any, 1000, speed, 25, 0, #WF_SineWave, 0, 1)
Global dahsnd.i = CreateSound(#PB_Any, 1000, speed * 3, 25, 0, #WF ...
InitSound()
IncludeFile "SoundEasy.pbi"
EnableExplicit
Global speed.f = 0.1
Global speedms.f = speed * 1000
Global ditsnd.i = CreateSound(#PB_Any, 1000, speed, 25, 0, #WF_SineWave, 0, 1)
Global dahsnd.i = CreateSound(#PB_Any, 1000, speed * 3, 25, 0, #WF ...
- Thu May 12, 2016 5:00 pm
- Forum: Tricks 'n' Tips
- Topic: SoundEasy.pbi include file adds CreateSound() command
- Replies: 27
- Views: 15331
Re: SoundEasy.pbi include file adds CreateSound() command
I know, old thread, but this rocks!
- Thu Apr 21, 2016 3:07 pm
- Forum: Feature Requests and Wishlists
- Topic: Support for ARM-Linux
- Replies: 121
- Views: 59887
Re: Support for ARM-Linux
I think the only good way to support ARM platforms with a Basic alike dialect would be a transpiler solution, aka Spiderbasic, but as target language C.
Take a look at nim-lang, it has C, C++, ObjC, JS targets - it's possible to write baremetal with it, you can turn off the gc and manage your data ...
Take a look at nim-lang, it has C, C++, ObjC, JS targets - it's possible to write baremetal with it, you can turn off the gc and manage your data ...
- Tue Dec 17, 2013 5:09 pm
- Forum: Coding Questions
- Topic: different encoding for sqlite db?
- Replies: 1
- Views: 698
different encoding for sqlite db?
Hi!
I use GetDatabaseString() to extract data of an sqlite database.
Is there a way to select an encoding, because the data seems to be aweful odd. I would like to try out reading in latin-1, utf8, etc.
Thank you, Gregor
I use GetDatabaseString() to extract data of an sqlite database.
Is there a way to select an encoding, because the data seems to be aweful odd. I would like to try out reading in latin-1, utf8, etc.
Thank you, Gregor
- Tue Sep 17, 2013 2:06 pm
- Forum: Announcement
- Topic: PureBasic 5.20 LTS is out (Rockstar release)
- Replies: 78
- Views: 41476
Re: PureBasic 5.20 LTS is out (Rockstar release)
Dang! 5.20 release and fresh gta...
... that means goodbye reallife
Thank you for all your hard work!
... that means goodbye reallife

Thank you for all your hard work!