Recent Posts

Pages: 1 2 3 [4] 5 6 ... 10
31
Community news and announcements / Re: End of Retrogamecoding and Basicprogramming Forum
« Last post by Aurel on October 14, 2019, 05:20:15 PM »
Ok Markus
and all best to you  :)
32
Dear community, this site will be closed by the 4th of November 2019.
I think BASIC is now a rather dead language and all BASICs which are a bit more successful do have their own dedicated forums (qb64, FreeBASIC, PureBASIC ...)
Maybe we will meet there again.
Oh, and by the way, this means all my other domains will be closed, too (all pulsar2d.org related domains).

It was a lot of fun the last years (more than a decade???); all started with that simple Yabasic forum.

I want to thank you all for your participation and wish you the very best for your (programming) future.

33
Other Languages / Re: Any Linux users who can test naalaa?
« Last post by johnno56 on September 30, 2019, 09:35:29 AM »
Mopz,

I am running Linux Mint 18.3 (64 bit) and it runs without error.

J
34
Offtopic / Re: A classic one - how does look your desktop?
« Last post by Cybermonkey on September 19, 2019, 07:21:52 PM »
And now my new macOS High Sierra desktop ... didn't know how easy a Hackintosh can be set up with KVM. (Since I use this old FX 8350 CPU newer than High Sierra is not possible - but my new PC will be assembled soon ...)
Added another screen showning neofetch and inxi.
35
Code and examples / Re: Archimedes spiral
« Last post by Aurel on September 18, 2019, 05:41:03 PM »
Maybe 1-2 years old ..i think
I never download it and try..
36
Code and examples / Re: Archimedes spiral
« Last post by B+ on September 18, 2019, 03:29:34 PM »
Hey Aurel! Looks like this LogicBasic is just getting started:
37
Code and examples / Re: Archimedes spiral
« Last post by Aurel on September 18, 2019, 09:43:44 AM »
Nice one Mark and Galileo too  :)
I just found it on LogicBasic forum..
hmm this LogicBasic seems very nice dialect...
38
Code and examples / Re: Archimedes spiral
« Last post by B+ on September 17, 2019, 04:43:05 PM »
I made a little modification of Archimedes Spiral:
39
Code and examples / Re: Archimedes spiral
« Last post by Galileo on September 17, 2019, 09:23:46 AM »
Text mode in iBASIC

Code: [Select]
1 REM iBASIC version 09/2019
5 screen window mode 45,60
7 window title "Espiral arquimediana"
10 LET A=1.5
20 LET B=0.7
30 FOR T=0 TO 7*PI STEP 0.05
40 LET R=A+B*T
45 let x = R*COS(T)+32 : let y = R*SIN(T)+22
50 locate y,x : print "*"
60 NEXT T
70 input "",a$
40
Code and examples / Re: Archimedes spiral
« Last post by Galileo on September 17, 2019, 09:20:36 AM »
Code: [Select]
// Ported from ZX81 Sinclair BASIC to Yabasic by Galileo, 10/2018

5 OPEN WINDOW 320, 200 : WINDOW ORIGIN "CC"
10 LET A=1.5
20 LET B=0.7
30 FOR T=0 TO 30*PI STEP 0.05
40 LET R=A+B*T
50 LINE TO R*COS(T),R*SIN(T)
60 NEXT T
Pages: 1 2 3 [4] 5 6 ... 10