Skip to content

Commit 8f5cc7e

Browse files
committed
Tidy up opening text
1 parent aded3c6 commit 8f5cc7e

File tree

2 files changed

+25
-13
lines changed

2 files changed

+25
-13
lines changed

_build/pages/index.markdown

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,25 @@ func AddStrings(a, b)
1515
end
1616
```
1717

18-
## Multi-platform
19-
20-
SmallBASIC is released for Windows, Linux and Android. It can be build from source for many other POSIX compliant operating systems including Raspberry Pi OS for the Raspberry Pi. Thanks to the build in IDE programs can be written on your Android powered tablet or mobile phone and executed immediately ([Downloads](/pages/download.html)).
21-
22-
Your program can be bundled with all necessary libraries to create executable files for Windows (exe-files) or Linux (AppImage). For Android a signed pkg can be created and for example distributed using Google play ([Distribute your program](/pages/distributiontool.html)).
23-
24-
Additionally you can start programming with the online version of SmallBASIC in your browser right now: [Start online](/online/sbasic.html).
18+
## Programming Made Easy for All
19+
20+
SmallBASIC is available for various operating systems, including
21+
Windows, Linux, and Android. You can even build it from source to run
22+
on many other POSIX-compliant systems, such as Raspberry Pi OS for the
23+
Raspberry Pi. With its built-in Integrated Development Environment
24+
(IDE), you can write programs on your Android-powered tablet or mobile
25+
phone and run them instantly. If you want to get started, you can
26+
download SmallBASIC from our ([Downloads](/pages/download.html)) page.
27+
28+
SmallBASIC makes it easy to bundle your program with all the necessary
29+
libraries, creating executable files for Windows (exe-files) or Linux
30+
(AppImage). For Android, you can create a signed package (pkg) and
31+
distribute it through platforms like Google Play. Learn more about
32+
distributing your program on our ([Distribution](/pages/distributiontool.html)) page.
33+
34+
If you prefer an online experience, you can start programming with the
35+
web-based version of SmallBASIC in your browser right now.
36+
Just click on [Start online](/online/sbasic.html) to begin coding.
2537

2638
## Editors, IDE and SmallBASIC versions
2739

@@ -61,7 +73,7 @@ const screenWidth = 800
6173
const screenHeight = 450
6274
6375
rl.InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window")
64-
rl.SetTargetFPS(60)
76+
rl.SetTargetFPS(60)
6577
6678
while (!rl.WindowShouldClose())
6779
rl.BeginDrawing()

index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ <h1 id="welcome-to-smallbasic">Welcome to SmallBASIC</h1>
7777
<span id="cb1-6"><a href="#cb1-6" aria-hidden="true"></a><span class="kw">func </span>AddStrings(a, b)</span>
7878
<span id="cb1-7"><a href="#cb1-7" aria-hidden="true"></a> <span class="kw">return</span> a + b</span>
7979
<span id="cb1-8"><a href="#cb1-8" aria-hidden="true"></a><span class="kw">end</span></span></code></pre></div>
80-
<h2 id="multi-platform">Multi-platform</h2>
81-
<p>SmallBASIC is released for Windows, Linux and Android. It can be build from source for many other POSIX compliant operating systems including Raspberry Pi OS for the Raspberry Pi. Thanks to the build in IDE programs can be written on your Android powered tablet or mobile phone and executed immediately (<a href="/pages/download.html">Downloads</a>).</p>
82-
<p>Your program can be bundled with all necessary libraries to create executable files for Windows (exe-files) or Linux (AppImage). For Android a signed pkg can be created and for example distributed using Google play (<a href="/pages/distributiontool.html">Distribute your program</a>).</p>
83-
<p>Additionally you can start programming with the online version of SmallBASIC in your browser right now: <a href="/online/sbasic.html">Start online</a>.</p>
80+
<h2 id="programming-made-easy-for-all">Programming Made Easy for All</h2>
81+
<p>SmallBASIC is available for various operating systems, including Windows, Linux, and Android. You can even build it from source to run on many other POSIX-compliant systems, such as Raspberry Pi OS for the Raspberry Pi. With its built-in Integrated Development Environment (IDE), you can write programs on your Android-powered tablet or mobile phone and run them instantly. If you want to get started, you can download SmallBASIC from our (<a href="/pages/download.html">Downloads</a>) page.</p>
82+
<p>SmallBASIC makes it easy to bundle your program with all the necessary libraries, creating executable files for Windows (exe-files) or Linux (AppImage). For Android, you can create a signed package (pkg) and distribute it through platforms like Google Play. Learn more about distributing your program on our (<a href="/pages/distributiontool.html">Distribution</a>) page.</p>
83+
<p>If you prefer an online experience, you can start programming with the web-based version of SmallBASIC in your browser right now. Just click on <a href="/online/sbasic.html">Start online</a> to begin coding.</p>
8484
<h2 id="editors-ide-and-smallbasic-versions">Editors, IDE and SmallBASIC versions</h2>
8585
<p>SmallBASIC comes in three different flavors for the desktop. The SDL version offers a simple but efficient IDE and is perfect for working with graphics. The FLTK version has a great IDE. The console version doesn’t offer an IDE and is text-only but works perfect with plugins like raylib or nuklear (<a href="/pages/download.html">Downloads</a>).</p>
8686
<p>No matter which SmallBASIC version you prefer, external editors like Visual Studio Code, Geany, Sublime Text or KDE Kate can be setup for syntax highlighting or code execution (<a href="/language_support.html">Setup external editors</a>).</p>
@@ -108,7 +108,7 @@ <h2 id="plugins">Plugins</h2>
108108
<span id="cb3-7"><a href="#cb3-7" aria-hidden="true"></a><span class="dt">const</span> screenHeight = <span class="dv">450</span></span>
109109
<span id="cb3-8"><a href="#cb3-8" aria-hidden="true"></a></span>
110110
<span id="cb3-9"><a href="#cb3-9" aria-hidden="true"></a>rl.InitWindow(screenWidth, screenHeight, <span class="st">&quot;raylib [core] example - basic window&quot;</span>)</span>
111-
<span id="cb3-10"><a href="#cb3-10" aria-hidden="true"></a>rl.SetTargetFPS(<span class="dv">60</span>) </span>
111+
<span id="cb3-10"><a href="#cb3-10" aria-hidden="true"></a>rl.SetTargetFPS(<span class="dv">60</span>)</span>
112112
<span id="cb3-11"><a href="#cb3-11" aria-hidden="true"></a></span>
113113
<span id="cb3-12"><a href="#cb3-12" aria-hidden="true"></a><span class="kw">while </span>(!rl.WindowShouldClose())</span>
114114
<span id="cb3-13"><a href="#cb3-13" aria-hidden="true"></a> rl.BeginDrawing()</span>

0 commit comments

Comments
 (0)