Skip to content

Commit 95ed95a

Browse files
committed
add new homepage
1 parent 57efa2c commit 95ed95a

1 file changed

Lines changed: 53 additions & 0 deletions

File tree

src/index.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: base.html
3+
title: Learn BASIC
4+
base_uri: .
5+
---
6+
7+
<section>
8+
<article class="solo">
9+
<h1>Learn BASIC</h1>
10+
<p>We’re going to learn how to program a computer using the programming language that
11+
I learned to program with: BASIC. Once you’ve learned how to program in any language
12+
you’ll be able to pick up any new language pretty easily! So let’s start with an
13+
oldie but a goodie!
14+
</p>
15+
</article>
16+
</section>
17+
18+
<section>
19+
<article class="solo">
20+
<h1>What is BASIC?</h1>
21+
<p>To make a computer do things you need to give it instructions in a language it understands.
22+
BASIC, the language which most home computers used in the 1980’s,
23+
is quite like English, with some special words
24+
and symbols.</p>
25+
<p>If you give a computer instructions in ordinary English
26+
it will not understand what you mean.</p>
27+
<p>Giving a computer instructions is called programming and a list of instructions is called a program.
28+
Below you can see what a program in BASIC looks like.</p>
29+
<center><img src="{{ base_uri }}/img/usborne/simple-basic/img/01about.jpg"></center>
30+
</article>
31+
</section>
32+
33+
<section>
34+
<article class="solo">
35+
<h1>Let’s go!</h1>
36+
37+
<h2>Getting started</h2>
38+
<p>First you should start with the Learn BASIC course I've put together from the same book I learned
39+
BASIC from.
40+
</p>
41+
<p><a href="simple01/">Start the Learn BASIC course</a></p>
42+
43+
<h2>Challenges</h2>
44+
<p>Now that you’ve learned some BASIC, here are some challenges for you to improve your skills. These
45+
aren’t supposed to be easy. You might need to put some time into experimenting and playing to try
46+
to work them out. Treat them like a puzzle! Hopefully you have fun!
47+
</p>
48+
<p>Do these in order as they will increase in complexity and I’ll assume things you’ve learned as we go.</p>
49+
<p><a href="game01/">Bustout</a></p>
50+
<p><a href="game02/">Hangman</a></p>
51+
</article>
52+
</section>
53+

0 commit comments

Comments
 (0)