
I18N WITH LITERAL BLOCK
***********************

CORRECT LITERAL BLOCK:

   this is
   literal block

MISSING LITERAL BLOCK:

<SYSTEM MESSAGE: /Users/tkomiya/work/sphinx/tests/build/test-
intl/literalblock.txt:13: (WARNING/2) Literal block expected; none
found.>

THAT'S ALL.


CODE-BLOCKS
***********

   def main
      'result'
   end

   #include <stdlib.h>
   int main(int argc, char** argv)
   {
       return 0;
   }

   #include <stdio.h>
   int main(int argc, char** argv)
   {
       return 0;
   }


DOCTEST-BLOCKS
**************

>>> import sys  # sys importing
>>> def main():  # define main function
...     sys.stdout.write('hello')  # call write method of stdout object
>>>
>>> if __name__ == '__main__':  # if run this py file as python script
...     main()  # call main
