Hi,

On Sun, Jul 15, 2012 at 2:02 AM, Ralf A. Quint <free...@gmx.net> wrote:
> At 11:16 PM 7/14/2012, Rugxulo wrote:
>
>>On Jul 15, 2012 12:56 AM, "Ralf A. Quint"
>><<mailto:free...@gmx.net>free...@gmx.net> wrote:
>> >
>> > See above. It would be really helpful for you if you hit the books
>> > about BASIC (almost any one will do) to understand the differences
>> > between the different data types and how to use them.
>>
>>Or he could use a language like Rexx (see Regina), where everything
>>is a string. It has its own built-in debugger too.
>
> That doesn't help one bit (pun intended) with neither actually
> learning the very basics of programming nor the problem of not using
> quotes around the string constants.
> That would also be the very same issue in Rexx. Or pretty much any
> other programming language for that matter...

Rexx should be a drop easier. Here's what I was thinking:


#!/usr/local/bin/rexx

signal on novalue
trace ?a

a=5
b="6"
say a+b /* 11 */
blah: say a+c /* Bad arithmetic conversion */
say bye /* BYE */
exit

novalue: say c /* C */ ; c=10
say oops /* OOPS */
signal blah

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user

Reply via email to