File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ evaluated (primarily) at compile time.
28
28
29
29
#### Characters and strings
30
30
31
- | | Example | ` # ` sets\* | Characters | Escapes |
32
- | ----------------------------------------------| -----------------| ----------------- | -------------| ---------------------|
33
- | [ Character] ( #character-literals ) | ` 'H' ` | 0 | All Unicode | [ Quote] ( #quote-escapes ) & [ ASCII] ( #ascii-escapes ) & [ Unicode] ( #unicode-escapes ) |
34
- | [ String] ( #string-literals ) | ` "hello" ` | 0 | All Unicode | [ Quote] ( #quote-escapes ) & [ ASCII] ( #ascii-escapes ) & [ Unicode] ( #unicode-escapes ) |
35
- | [ Raw string] ( #raw-string-literals ) | ` r#"hello"# ` | <2< sup >16</ sup > | All Unicode | ` N/A ` |
36
- | [ Byte] ( #byte-literals ) | ` b'H' ` | 0 | All ASCII | [ Quote] ( #quote-escapes ) & [ Byte] ( #byte-escapes ) |
37
- | [ Byte string] ( #byte-string-literals ) | ` b"hello" ` | 0 | All ASCII | [ Quote] ( #quote-escapes ) & [ Byte] ( #byte-escapes ) |
38
- | [ Raw byte string] ( #raw-byte-string-literals ) | ` br#"hello"# ` | <2< sup >16</ sup > | All ASCII | ` N/A ` |
31
+ | | Example | ` # ` sets\* | Characters | Escapes |
32
+ | ----------------------------------------------| -----------------| ------------| -------------| ---------------------|
33
+ | [ Character] ( #character-literals ) | ` 'H' ` | 0 | All Unicode | [ Quote] ( #quote-escapes ) & [ ASCII] ( #ascii-escapes ) & [ Unicode] ( #unicode-escapes ) |
34
+ | [ String] ( #string-literals ) | ` "hello" ` | 0 | All Unicode | [ Quote] ( #quote-escapes ) & [ ASCII] ( #ascii-escapes ) & [ Unicode] ( #unicode-escapes ) |
35
+ | [ Raw string] ( #raw-string-literals ) | ` r#"hello"# ` | <256 | All Unicode | ` N/A ` |
36
+ | [ Byte] ( #byte-literals ) | ` b'H' ` | 0 | All ASCII | [ Quote] ( #quote-escapes ) & [ Byte] ( #byte-escapes ) |
37
+ | [ Byte string] ( #byte-string-literals ) | ` b"hello" ` | 0 | All ASCII | [ Quote] ( #quote-escapes ) & [ Byte] ( #byte-escapes ) |
38
+ | [ Raw byte string] ( #raw-byte-string-literals ) | ` br#"hello"# ` | <256 | All ASCII | ` N/A ` |
39
39
40
40
\* The number of ` # ` s on each side of the same literal must be equivalent.
41
41
You can’t perform that action at this time.
0 commit comments