1 / 8

El lenguaje de Programación Perl

El lenguaje de Programación Perl. Historia. SH. AWK. Lisp. C. Perl. Evolución. ¿Por qué el nombre Perl?. Practical Extraction And Report Language (PEARL) Perl, el lenguaje de programación perl, el intérprete. Paradigmas e Implementación. Programación Imperativa Orientada a objetos

kamali
Télécharger la présentation

El lenguaje de Programación Perl

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. El lenguaje de Programación Perl

  2. Historia SH AWK Lisp C Perl

  3. Evolución

  4. ¿Por qué el nombre Perl? • Practical Extraction And Report Language (PEARL) • Perl, el lenguaje de programación • perl, el intérprete

  5. Paradigmas e Implementación • Programación Imperativa • Orientada a objetos • Guiada por eventos • Concurrente. • Perl es un lenguaje interpretado.

  6. Usos de Perl Sistemas de Gestión de Información Trabajar con grandes volúmenes de información Centrado en la Web

  7. if (CONDICION) { BLOQUE } elsif (CONDICION) { BLOQUE } else { BLOQUE } #esto es un comentario unless (CONDICION) { BLOQUE } EXPRESION while EXPRESION; EXPRESION for LISTA; while (CONDICION){ BLOQUE } do { BLOQUE } while (CONDICION); for (INICIALIZACION; CONDICION; INCREMENTO){ BLOQUE } for (LISTA){ BLOQUE } until (CONDICION){ BLOQUE } Sintaxis y Semántica BLOQUE es una instrucción o una serie de instrucciones

  8. Precedencia de Operadores • no asoc. ++ -- • derecha ** • derecha ! ~ \ • izquierda * / % x • izquierda + - . • no asoc. < > <= >= • no asoc. == != <=> • izquierda && • izquierda || • no asoc. .. • derecha = += -= *= etc. (operadores de asignación)

More Related