Added a quick guide to embedding

This commit is contained in:
2022-09-18 19:38:46 +10:00
committed by GitHub
parent c216ca2998
commit f4d72b2cc9
4 changed files with 110 additions and 30 deletions

View File

@@ -16,7 +16,7 @@ The types available are:
| float | float | Any floating point number. The limits are implementation dependent |
| string | string | A series of characters, forming text |
| array | n/a | A series of values arranged sequentially in memory, indexable with an integer |
| array | n/a | A series of key-value pairs stored in a hash-table, indexable with the keys |
| dictionary | n/a | A series of key-value pairs stored in a hash-table, indexable with the keys |
| function | fn | A chunk of reusable code, which can potentially return a value of some kind |
| type | type | The type of types |
| any | any | Can hold any value |