Skip to content

Commit 7d9d649

Browse files
Update screen.md
Print should be 'PRINT AT 0, 0; "The character at 9, 10 is "; c$' rather than 'PRINT AT 0, 0; "The character at 10, 10 is "; c$'
1 parent e6bc7e1 commit 7d9d649

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/screen.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SCREEN is a library function to be included with the following command:
2828
2929
PRINT AT 9, 10; "A"
3030
LET c$ = SCREEN$(9, 10)
31-
PRINT AT 0, 0; "The character at 10, 10 is "; c$
31+
PRINT AT 0, 0; "The character at 9, 10 is "; c$
3232
```
3333

3434
##Remarks

0 commit comments

Comments
 (0)