comparison docs/lexer-algpseudocode.rst @ 241:7df1fd3bab87

In the number example use 1234567890 also
author Franz Glasner <fzglas.hg@dom66.de>
date Sat, 16 May 2026 00:35:51 +0200
parents c4e8c7010ca0
children 2e78e255b54e
comparison
equal deleted inserted replaced
240:e18c4bec7889 241:7df1fd3bab87
181 using ``\'`` or ``\"``. This must be used to typeset something as 181 using ``\'`` or ``\"``. This must be used to typeset something as
182 :algpseudocode:`f\\'(x) = 0`. 182 :algpseudocode:`f\\'(x) = 0`.
183 183
184 .. code-block:: algpseudocode 184 .. code-block:: algpseudocode
185 185
186 0 0xdead 0b100001 0o720 2.7 2.7e-54 186 0 1234567890 0xdead 0b100001 0o720 2.7 2.7e-54
187 187
188 "A string with an escaped double-quote \" " 188 "A string with an escaped double-quote \" "
189 189
190 'Another string with an escaped single-quote \' ' 190 'Another string with an escaped single-quote \' '
191 191