Skip to content

Commit 3351e5c

Browse files
committed
updated docs
1 parent 7341cd0 commit 3351e5c

6 files changed

Lines changed: 10 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
BScript is a coding language that is terrible.
44

5-
[Read the documentation here.](docs/Basics.md)
5+
[Read the documentation here.](https://brainy0789.github.io/BScript/basics.html)
66

77
All you get is simple variables that can only be added or subtracted to (only one), basic loops, really nothings else. It's probably easier than Brainfuck, though.
88

@@ -15,4 +15,6 @@ First of all, install [the latest version of Python](https://www.python.org/down
1515

1616
Secondly, download the source code from here.
1717

18-
Now, finally, run the `setup.py` file inside of Python. It will ask for things and then you can use the `bsc` command to compile BScript files! Neat!
18+
Now, finally, run the `setup.py` file inside of Python. It will ask for things and then you can use the `bsc` command to compile BScript files! Neat!
19+
20+
Or, just download the GUI app if you prefer. It's completely self-contained and required no dependencies.

docs/Advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ revascii a
2121

2222
(Do note the strings do not reset when you call this. You may have to call `string ""` if you want this to work correctly.)
2323

24-
[ < Previous Page](Advanced.md)
24+
[ < Previous Page](screenfunctions.html)

docs/Basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ This simply sets a user input to the Single String
5757
input;
5858
````
5959

60-
[Next Page >](Functions.md)
60+
[Next Page >](functions.html)

docs/ExampleFunctions.bs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//Some functions to use in BScript.
22

3+
//Do note functions are supported in the current version of BScript.
4+
35
//Function that takes two parameters and returns their sum
46
func add x, y {
57
var w;

docs/Functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ Functions can do a lot, and since I'm nice I'll provide some functions you can p
4040

4141
[You can see them here!](ExampleFunctions.bs)
4242

43-
[< Previous Page](Basics.md) | [Next Page >](ScreenFunctions.md)
43+
[< Previous Page](basics.html) | [Next Page >](screenfunctions.md)

docs/ScreenFunctions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Under construction!
44

5-
[< Previous Page](Functions.md) | [Next Page >](Advanced.md)
5+
[< Previous Page](functions.html) | [Next Page >](advanced.html)

0 commit comments

Comments
 (0)