Run BASIC Free Edition 1.01 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Run BASIC Free Edition 1.01 (Default branch)
# 1  
Old 12-02-2008
Run BASIC Free Edition 1.01 (Default branch)

ImageRun BASIC is a powerful, all-in-one Webprogramming system and application server,designed to make Web Development easy. Itscapabilities include the use of the BASICscripting language, graphics, XML, SQLitedatabase, Cascading Style Sheets, and more. A helpfile, a tutorial, and example programs areincluded. This free edition lets you experimentwith the Run BASIC system on a single computer.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trying to run a basic for loop

OS : RHEL 6.1 Shell : Bash I had a similair post on this a few weeks back. But I didn't explain my requirements clearly then. Hence starting a new thread now. I have lots of files in /tmp/stage directory as show below. I want to loop through each files to run a command on each file. I... (8 Replies)
Discussion started by: kraljic
8 Replies

2. Solaris

Free Developer Edition GNAT 95/2005 for Solaris 10

Dear friends, Please help me, I search GNAT 95/2005 Free Developer Edition for Sun Solaris 9.0 or 10.0. I did not find in AdaCore. I have only GNAT 95/2005 Free Developer Edition only for GNU/Linux and Windows. Please help me, because I started Critical System Project for Solaris on Ada... (0 Replies)
Discussion started by: assembler
0 Replies
Login or Register to Ask a Question
IPC::Run::Debug(3pm)					User Contributed Perl Documentation				      IPC::Run::Debug(3pm)

NAME
IPC::Run::Debug - debugging routines for IPC::Run SYNOPSIS
## ## Environment variable usage ## ## To force debugging off and shave a bit of CPU and memory ## by compile-time optimizing away all debugging code in IPC::Run ## (debug => ...) options to IPC::Run will be ignored. export IPCRUNDEBUG=none ## To force debugging on (levels are from 0..10) export IPCRUNDEBUG=basic ## Leave unset or set to "" to compile in debugging support and ## allow runtime control of it using the debug option. DESCRIPTION
Controls IPC::Run debugging. Debugging levels are now set by using words, but the numbers shown are still supported for backwards compatibility: 0 none disabled (special, see below) 1 basic what's running 2 data what's being sent/recieved 3 details what's going on in more detail 4 gory way too much detail for most uses 10 all use this when submitting bug reports noopts optimizations forbidden due to inherited STDIN The "none" level is special when the environment variable IPCRUNDEBUG is set to this the first time IPC::Run::Debug is loaded: it prevents the debugging code from being compiled in to the remaining IPC::Run modules, saving a bit of cpu. To do this in a script, here's a way that allows it to be overridden: BEGIN { unless ( defined $ENV{IPCRUNDEBUG} ) { eval 'local $ENV{IPCRUNDEBUG} = "none"; require IPC::Run::Debug"' or die $@; } } This should force IPC::Run to not be debuggable unless somebody sets the IPCRUNDEBUG flag; modify this formula to grep @ARGV if need be: BEGIN { unless ( grep /^--debug/, @ARGV ) { eval 'local $ENV{IPCRUNDEBUG} = "none"; require IPC::Run::Debug"' or die $@; } Both of those are untested. AUTHOR
Barrie Slaymaker <barries@slaysys.com>, with numerous suggestions by p5p. perl v5.14.2 2012-01-16 IPC::Run::Debug(3pm)