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