Skip to content

Commit 254592c

Browse files
authored
Merge pull request #36 from meisl/pull36
docs: fix typo
2 parents dae5923 + ee23ac0 commit 254592c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ What does Prog8 provide?
3232
- modularity, symbol scoping, subroutines
3333
- various data types other than just bytes (16-bit words, floats, strings)
3434
- floating point math is supported if the target system provides floating point library routines (C64 and Cx16 both do)
35-
- strings can contain excaped characters but also many symbols directly if they have a petscii equivalent, such as "♠♥♣♦π▚●○╳". Characters like ^, _, \, {, } and | are also accepted and converted to the closest petscii equivalents.
35+
- strings can contain escaped characters but also many symbols directly if they have a petscii equivalent, such as "♠♥♣♦π▚●○╳". Characters like ^, _, \, {, } and | are also accepted and converted to the closest petscii equivalents.
3636
- automatic static variable allocations, automatic string and array variables and string sharing
3737
- subroutines with input parameters and result values
3838
- high-level program optimizations

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Language features
5757
- Nested subroutines can access variables from outer scopes to avoids the overhead to pass everything via parameters
5858
- Variable data types include signed and unsigned bytes and words, arrays, strings.
5959
- Floating point math also supported if the target system provides floating point library routines (C64 and Cx16 both do).
60-
- Strings can contain excaped characters but also many symbols directly if they have a petscii equivalent, such as "♠♥♣♦π▚●○╳". Characters like ^, _, \\, {, } and | are also accepted and converted to the closest petscii equivalents.
60+
- Strings can contain escaped characters but also many symbols directly if they have a petscii equivalent, such as "♠♥♣♦π▚●○╳". Characters like ^, _, \\, {, } and | are also accepted and converted to the closest petscii equivalents.
6161
- High-level code optimizations, such as const-folding, expression and statement simplifications/rewriting.
6262
- Many built-in functions, such as ``sin``, ``cos``, ``rnd``, ``abs``, ``min``, ``max``, ``sqrt``, ``msb``, ``rol``, ``ror``, ``swap``, ``sort`` and ``reverse``
6363
- Programs can be run multiple times without reloading because of automatic variable (re)initializations.

0 commit comments

Comments
 (0)