Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
<qbasic> in the docs
#1
Why the <qbasic> extension is used in the docs? The following code has been taken from the FUNCTION page:

Code:
<qbasic>FUNCTION Factorial(x AS Ulong) AS Ulong
    IF x < 2 THEN RETURN x: END IF
    RETURN Factorial(x - 1) * x
END FUNCTION</qbasic>

The extension highligths the code but also links the keywords to http://www.qbasicnews.com
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)