Search found 11 matches

by basicjohnny
Dec 13, 2020 23:27
Forum: Community Discussion
Topic: Freedos Question
Replies: 15
Views: 4851

Freedos Question

Hello all, I've been looking into Freedos lately as I plan to set up a computer that only runs Freedos. After some searches I found out that Freedos should run on modern computers, but it does so in 16 bit mode. So this question popped into my mind: If Freedos is a 16 bit operating system, how does ...
by basicjohnny
Jan 26, 2020 18:42
Forum: Beginners
Topic: Preprocessor commands
Replies: 1
Views: 761

Preprocessor commands

Are the preprocessor commands something that was part of the QBasic language, or were they added for FreeBasic? I'm just curious as I notice they are very similar to the C language.
by basicjohnny
Jan 26, 2020 18:38
Forum: General
Topic: Off Topic Form
Replies: 9
Views: 1681

Re: Off Topic Form

I can confirm that the new link for Discord works. Thank you :-)
by basicjohnny
Jan 24, 2020 4:57
Forum: General
Topic: Off Topic Form
Replies: 9
Views: 1681

Re: Off Topic Form

It seems that the Discord invite is invalid/expired. Does anyone have the correct one, or does the server no longer exist?
by basicjohnny
Jan 24, 2020 4:53
Forum: General
Topic: Off Topic Form
Replies: 9
Views: 1681

Re: Off Topic Form

It's good to know that there is at least one active Facebook group in English (and German), even though personally I rarely use Facebook. Discord in my opinion is the best way to chat with other FreeBASIC users. Yes, the Forum is the best place for posting specific questions, but it is nice to just ...
by basicjohnny
Jan 20, 2020 0:04
Forum: General
Topic: Off Topic Form
Replies: 9
Views: 1681

Off Topic Form

I saw a very old post in the "News" section that addressed this issue. It is of course now 2020.

Is there any website (or similar) where FreeBasic users can engage in general discussion, whether on or off topic?
by basicjohnny
Jan 08, 2020 23:46
Forum: Documentation
Topic: Spelling Correction under Documentation>CommunityTutorials>Using Libraries in FreeBASIC
Replies: 2
Views: 1517

Re: Spelling Correction under Documentation>CommunityTutorials>Using Libraries in FreeBASIC

Excellent! Thanks for the quick reply.

I may join in editing the wiki in the future.
by basicjohnny
Jan 08, 2020 20:55
Forum: Documentation
Topic: Spelling Correction under Documentation>CommunityTutorials>Using Libraries in FreeBASIC
Replies: 2
Views: 1517

Spelling Correction under Documentation>CommunityTutorials>Using Libraries in FreeBASIC

Just in the interest of having our documentation as polished as possible: In the "Using Libraries" tutorial, in the section "What are these Libraries, Anyway?", on line 3, 4th last word, "reigon" should be corrected to say "region". I can see that it was made ...
by basicjohnny
Aug 01, 2019 23:56
Forum: Documentation
Topic: Wiki signups
Replies: 52
Views: 64972

Re: Wiki signups

user: basicjohnny

MD5 hex hash: [...]
by basicjohnny
Apr 11, 2019 22:17
Forum: Documentation
Topic: Small Mistake in Documentation > Programmer's Guide > FreeBasic Primer #1
Replies: 3
Views: 6094

Small Mistake in Documentation > Programmer's Guide > FreeBasic Primer #1

Just wanted to point out a small mistake in the 'Doing Some Math' section: Dim As Integer a, b, c a = 5 b = 7 c = a + b Print "a = "; a Print "a = "; b Print "a + b = "; c The 2nd last line should say: Print "b = "; b It's a small mistake, but it might confuse...