Poll: With what you *do* remember, what computer has FIRST inspired you to create BASIC programming?
You do not have permission to vote in this poll.
Texas Instruments TI-99/4A
100.00%
17 100.00%
Apple II series
0%
0 0%
Atari 400/800/1200 series
0%
0 0%
IBM PC
0%
0 0%
IBM PCjr
0%
0 0%
Commodore VIC-20
0%
0 0%
Commodore 64/128 series
0%
0 0%
Commodore Amiga
0%
0 0%
other (please specify)
0%
0 0%
Total 17 vote(s) 100%
* You voted for this item. [Show Results]

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What computer *first* lead you into doing BASIC programming?
#21
Wow, that should be one of the first BASIC versions ever...

To know my "history", go here-> http://imaginatica.us.es/~wopr2k/speccy/oldies.html
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#22
Yes, Nathan, General Electric´s Basic version was probably one of the first implementations of the original Dartmouth Basic of 1965. You were forced to use the LET.

BTW, I like the little puppy dog in your Phantomas 5.
*****
Reply
#23
the version of basic moneo used and the one used on the trash were pretty close, chronologically. After all, MS basic is based on DECbasic code stolen from dumpsters. Smile
Reply
#24
Yeah, the basic version I used to code these games on the ZX Spectrum used LETs and stuff like that as well. SINCLAIR BASIC was hell and heaven at the same time, it was designed to perform many things with just 80 keywords.

This is a short snipped from one of my old games:

Code:
100 REM MOVIMIENTO
102 IF sal=1 AND nu>0 AND w<20 THEN IF ATTR (w+1,a)<>bgc OR ATTR (w+1,a+1)<>bgc THEN LET sal=0: RETURN
110 IF sal=1 THEN GO TO 200
115 IF ATTR (w+1,a)=bgc AND ATTR (w+1,a+1)=bgc THEN LET w=w+1: GO SUB 700: RETURN
117 IF IN 57342=189 AND facing=0 THEN LET facing=1: PRINT AT w-1,a; PAPER ps; INK is;"&'";AT w,a;"()": RETURN
120 IF IN 57342=189 THEN IF a>0 THEN IF ATTR (w-1,a-1)=bgc AND ATTR (w,a-1)=bgc THEN LET a=a-1: LET facing=1: GO SUB 900: GO SUB 710
127 IF IN 57342=190 AND facing=1 THEN LET facing=0: PRINT AT w-1,a; PAPER ps; INK is;" !";AT w,a;"""#": RETURN
130 IF IN 57342=190 THEN IF a<30 THEN IF ATTR (w-1,a+2)=bgc AND ATTR (w,a+2)=bgc THEN LET facing=0: GO SUB 900: GO SUB 720: LET a=a+1
140 IF IN 64510=190 THEN IF ATTR (w+1,a)<>bgc OR ATTR (w+1,a+1)<>bgc THEN LET sal=1: LET nu=0
150 RETURN

It makes you go dizzy :o
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#25
But you could do that (i forgot Spectrum's exact syntax):

INPUT "Input the function of x you want to plot" a$
FOR x=-10 TO 10 STEP .1
PSET x,val$(a$),color
NEXT

And you had the function plotted!The language allowed you to use the expression evaluator of the language from a Basic program...
Antoni
Reply
#26
Yeah, that was a great feature, but I think the correct syntax was:

Code:
10 INPUT "Input the function of x you want to plot"; a$
20 FOR x=-10 TO 10 STEP .1
30 PLOT INK colo; 25*x, val(a$)
40 NEXT x

That basic was so nifty. I've always thought on writing a Sinclair Basic interpreter for the PC, maybe if I find the time... some day...
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply
#27
1995 (OK I'm not as old as you guys :rollSmile, on a PC (don't remember exact model). My dad was doing some programming for his work, and I though it was cool he could decide what the computer should do like that, so I wanted to learn, and he brought up qbasic for me, and thought me some stuff. My first program calculated how many money he should pay me each month Wink . Later I taught him VB...
url=http://www.copy-pasta.com]CopyPasta[/url] - FilePasta
Reply
#28
Nathan:
The ZX-Spectrum created a style....

http://www.hulla-balloo.com/vplanet/ruview17.shtml

Big Grin
Antoni
Reply
#29
Lol - What I say: "Excellent graphics only for trained eyes".

It's a pitty that I got my speccy in 1988. I missed much of the "good times".
SCUMM (the band) on Myspace!
ComputerEmuzone Games Studio
underBASIC, homegrown musicians
[img]http://www.ojodepez-fanzine.net/almacen/yoghourtslover.png[/i
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)