Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
6
Task/Literals-String/Go/literals-string-1.go
Normal file
6
Task/Literals-String/Go/literals-string-1.go
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
ch := 'z'
|
||||
ch = 122 // or 0x7a or 0172 or any other integer literal
|
||||
ch = '\x7a' // \x{2*hex}
|
||||
ch = '\u007a' // \u{4*hex}
|
||||
ch = '\U0000007a' // \U{8*hex}
|
||||
ch = '\172' // \{3*octal}
|
||||
Loading…
Add table
Add a link
Reference in a new issue