Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
7
Task/Quoting-constructs/Phix/quoting-constructs-1.phix
Normal file
7
Task/Quoting-constructs/Phix/quoting-constructs-1.phix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-->
|
||||
<span style="color: #008080;">constant</span> <span style="color: #000000;">t123</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">`
|
||||
one
|
||||
two
|
||||
three
|
||||
`</span>
|
||||
<!--
|
||||
7
Task/Quoting-constructs/Phix/quoting-constructs-2.phix
Normal file
7
Task/Quoting-constructs/Phix/quoting-constructs-2.phix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-->
|
||||
<span style="color: #008080;">constant</span> <span style="color: #000000;">t123</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"""
|
||||
one
|
||||
two
|
||||
three
|
||||
"""</span>
|
||||
<!--
|
||||
5
Task/Quoting-constructs/Phix/quoting-constructs-3.phix
Normal file
5
Task/Quoting-constructs/Phix/quoting-constructs-3.phix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
-->
|
||||
<span style="color: #000000;">x</span><span style="color: #008000;">"1 2 34 5678_AbC"</span> <span style="color: #000080;font-style:italic;">-- same as {0x01, 0x02, 0x34, 0x56, 0x78, 0xAB, 0x0C}
|
||||
-- note however it displays as {1,2,52,86,120,171,12}
|
||||
-- whereas x"414243" displays as "ABC" (as all chars)</span>
|
||||
<!--
|
||||
4
Task/Quoting-constructs/Phix/quoting-constructs-4.phix
Normal file
4
Task/Quoting-constructs/Phix/quoting-constructs-4.phix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{2, 3, 5, 7, 11, 13, 17, 19}
|
||||
{1, 2, {3, 3, 3}, 4, {5, {6}}}
|
||||
{{"John", "Smith"}, 52389, 97.25}
|
||||
{} -- the 0-element sequence
|
||||
Loading…
Add table
Add a link
Reference in a new issue