Has anyone used Gambas Script?

Post

Posted
Rating:
#1 (In Topic #349)
Avatar
Regular
stevedee is in the usergroup ‘Regular’
I must admit I have never given Gambas script much thought, and may even have considered it to be feeble and irrelevant, while not actually bothering to take a look at it.

But on a recent 'nothing-on-tv' night, I spent a couple of hours exploring what it could do. And "surprise-surprise" it turns out to be quite powerful, especially as you can use Gambas components within your code.

If I'd have known about this when I was building my internet radios, I probably would have tried writing the code using Gambas script rather than Python.

So I was just wondering if any of you have created any Gambas script applications or if you have found any other use for it?




As usual (because of my unreliable memory) I've written up my notes on my blog, so that I wont have to work it all out again at some point in the future!
Captain Bodgit: Gambas Scripts
Online now: No Back to the top

Post

Posted
Rating:
#2
Avatar
Regular
Technopeasant is in the usergroup ‘Regular’
I have never heard of Gambas script. How is it different from normal Gambas?
Online now: No Back to the top

Post

Posted
Rating:
#3
Avatar
Regular
stevedee is in the usergroup ‘Regular’

Technopeasant said

…How is it different from normal Gambas?

Gambas scripts can be written using any text editor. Its an interpreted language, which means the interpreter just appears to run the text file at run-time (rather like Python).

So 'Hello World' looks like this:-

Code

#!/usr/bin/env gbs3
Print "Hello World!"

…and is run in a terminal like this:-

Code

./mygambasscript

Take a look at my blog post for more details.
Online now: No Back to the top

Post

Posted
Rating:
#4
Avatar
Regular
Technopeasant is in the usergroup ‘Regular’
Cool, though wanting to have easy access to a GUI designer is why I use Gambas over Python in the first place.  :D
Online now: No Back to the top
1 guest and 0 members have just viewed this.