Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is there a Euphoria library for wxWidgets?

euphoria library wxwidgets
0
Posted

Is there a Euphoria library for wxWidgets?

0

Yes. Matthew Lewis maintains his wxEuphoria library here. Other Features How can I count the number of lines in a file? Here’s one way integer sum, fn object line sum = 0 fn = open(“myfile”,”r”) line = gets(fn) while not atom(line) do sum += 1 line = gets(fn) end while printf(1,”Lines in file: %d\n”,{sum}) How can I sum the elements in an array? Use a for loop integer sum sequence a a = {1,2,3,4,5,6,7,8} sum = 0 for t=1 to length(a) do sum += a[t] end for Is there a CGI module for Euphoria? There is no standard CGI module that gets distributed with the Euphoria base package. However, there is code available for doing CGI with Euphoria (obviously, because this entire website is being served by a Euphoria CGI program). You can also get specific information for running Euphoria as CGI here and at the official Euphoria web site. Object-Orientedness Does Euphoria support object oriented programming? Vanilla Euphoria does not “support” OO programming, though there are OO libraries in the arc

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.