mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Fixed missing escape character
This commit is contained in:
parent
4eb2baaf0c
commit
50b534d2a5
@ -66,7 +66,7 @@ program Learn_More;
|
|||||||
|
|
||||||
const
|
const
|
||||||
PI = 3.141592654;
|
PI = 3.141592654;
|
||||||
GNU = 'GNU's Not Unix';
|
GNU = 'GNU''s Not Unix';
|
||||||
// constants are conventionally named using CAPS
|
// constants are conventionally named using CAPS
|
||||||
// their values are fixed and cannot be changed during runtime
|
// their values are fixed and cannot be changed during runtime
|
||||||
// holds any standard data type (integer, real, boolean, char, string)
|
// holds any standard data type (integer, real, boolean, char, string)
|
||||||
|
Loading…
Reference in New Issue
Block a user