mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Updated links after moving the repo
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
This git branch is the documentation website for The Toy Programming Language version 2.x, which can be found at [https://github.com/Ratstail91/Toy](https://github.com/Ratstail91/Toy).
|
||||
This git branch is the documentation website for The Toy Programming Language version 2.x, which can be found at [https://github.com/krgamestudios/Toy](https://github.com/krgamestudios/Toy).
|
||||
|
||||
Toy v2.x is still under active development, so this documentation will change and evolve over time, and may not reflect the current reference implementation.
|
||||
|
||||
|
||||
@@ -53,7 +53,7 @@ The types available in Toy are:
|
||||
| `bool` | boolean | Either `true` or `false`. |
|
||||
| `int` | integer | Any whole number (32-bits). |
|
||||
| `float` | float | A decimal number (32-bits), using floating-point arithmetic. |
|
||||
| `string` | string | A piece of text, supports UTF-8, [in theory](https://github.com/Ratstail91/Toy/issues/174). |
|
||||
| `string` | string | A piece of text, supports UTF-8, [in theory](https://github.com/krgamestudios/Toy/issues/174). |
|
||||
| `array` | array | A series of values stored sequentially in memory. |
|
||||
| `table` | table | A series key-value pairs stored in such a way that allows for fast lookups. Booleans, functions, opaques and `null` can't be used as keys. |
|
||||
| `function` | function | A chunk of reusable code that takes zero or more parameters, and returFunctions are declared with the `fn` keyword. |
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="smaller text">
|
||||
<a href="https://github.com/Ratstail91/Toy">The Toy Programming Language - Available On GitHub<img src="{{ site.baseurl }}/assets/blacktocat.png" style="filter: invert(100%); height: 20px;"></a>
|
||||
<a href="https://github.com/krgamestudios/Toy">The Toy Programming Language - Available On GitHub<img src="{{ site.baseurl }}/assets/blacktocat.png" style="filter: invert(100%); height: 20px;"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
2
index.md
2
index.md
@@ -10,7 +10,7 @@ title: The Toy Programming Language
|
||||
</div>
|
||||
|
||||
<div style="justify-self: center;">
|
||||
<img src="https://github.com/Ratstail91/Toy/actions/workflows/continuous-integration-v2.yml/badge.svg">
|
||||
<img src="https://github.com/krgamestudios/Toy/actions/workflows/continuous-integration-v2.yml/badge.svg">
|
||||
</div>
|
||||
|
||||
The Toy Programming Language is an imperative, bytecode-interpreted, embeddable scripting language. Rather than functioning independently, it serves as part of another program, the "host". This design allows for straightforward customization by both the host's developers and end users, achieved by exposing program logic through text files.
|
||||
|
||||
Reference in New Issue
Block a user