#Hello World in YaBasic

<div class="text-success lead">
Yabasic (Yet Another BASIC interpreter) implements the most common and simple elements of the basic 
language; It comes with goto/gosub, with various loops, with user defined subroutines and Libraries. 
Yabasic is small (around 200KB) and free.
</div>

##YaBasic installation

<pre class="prettyprint">
~# apt-get update
~# apt-get install yabasic
</pre>

##Hello world example

This is the "Hello world !" source code example.

<pre class="prettyprint">
print "Hello world !"
</pre>

Save it with in hello.yab then run it typing:

<pre class="prettyprint">
~# yabasic hello.yab
Hello world !
</pre>

##Related links

<ul>
<li><a href="http://www.yabasic.de/">YaBasic official Website</a></li>
<li><a href="http://www.yabasic.de/yabasic.htm">Manual</a></li>
<li><a href="http://en.wikipedia.org/wiki/Yabasic">Wikipedia definition of YaBasic</a></li>
</ul>

