latex/workbook/example2.tex
changeset 107 80a8b46754f8
equal deleted inserted replaced
106:43ca1381dbef 107:80a8b46754f8
       
     1 \documentclass{article}
       
     2 \title{Python}
       
     3 \author{Wikipedia}
       
     4 \maketitle
       
     5 \begin{document}
       
     6 Python is a general-purpose high-level programming language whose
       
     7 design philosophy emphasizes code readability. Python aims to combine
       
     8 "remarkable power with very clear syntax", and its standard library is
       
     9 large and comprehensive. Its use of indentation for block delimiters
       
    10 is unusual among popular programming languages.
       
    11 
       
    12 Python supports multiple programming paradigms, primarily but not
       
    13 limited to object oriented, imperative and, to a lesser extent,
       
    14 functional programming styles. It features a fully dynamic type system
       
    15 and automatic memory management, similar to that of Scheme, Ruby,
       
    16 Perl, and Tcl. Like other dynamic languages, Python is often used as a
       
    17 scripting language, but is also used in a wide range of non-scripting
       
    18 contexts. 
       
    19 
       
    20 The reference implementation of Python (CPython) is free and open
       
    21 source software and has a community-based development model, as do all
       
    22 or nearly all of its alternative implementations. CPython is managed
       
    23 by the non-profit Python Software Foundation.
       
    24 
       
    25 This content is from Wikipedia's Python page. 
       
    26 \end{document}