Search found 5 matches

by tribal
Wed 11 Nov, 2009 5:18 pm
Forum: BBC BASIC
Topic: Bug Report
Replies: 5
Views: 14600

Re: Bug Report

Found a bad little bug on BBC r762 RAM Clear by having a list with less than 4 characters and is given a illegal value. ex: 10 DIM LIS$(2)="0" RUN During first run, the console will output "No FN at line 10". If you type 'RUN' again, the interpreter will crash with a 'RAM Clear'....
by tribal
Mon 24 Aug, 2009 4:18 am
Forum: BBC BASIC
Topic: Interested
Replies: 12
Views: 20873

Re: Interested

Ok, then why don't you just look at some example programs, or some BBC Basic programs in general? If you know QBasic, then it shouldn't be that hard to grasp when experimenting/viewing pre-made code, that should satisfy your needs.
by tribal
Sat 20 Dec, 2008 12:45 am
Forum: Programming Help
Topic: [TI BASIC] Optimizing
Replies: 167
Views: 144835

Re: [TI BASIC] Optimizing

Instead of using:

Code: Select all

if ans != 0 and ans !=21
use:

Code: Select all

if prod(Ans != {0, 21
and if you are ever checking if Ans is holding 0 I would suggest using:

Code: Select all

if not(Ans
instead of:

Code: Select all

if Ans = 0
both are equivalent but the first is smaller.
by tribal
Wed 16 Jul, 2008 2:17 am
Forum: Latenite, Brass and EarlyMorning
Topic: EarlyMorning - Progress & Discussion
Replies: 176
Views: 180783

Wow... been awhile... hope this isn't dead...

Anyway if it isn't I was wondering if this could get animation support. That would be great :D
by tribal
Mon 07 Jul, 2008 4:22 pm
Forum: Super Mario - and the Elemental Crystal
Topic: Project Discussion
Replies: 35
Views: 75987

great work as always tr1p1ea, but it's been awhile, any updates?