
PERL is a programming language (♦ see DEF) multiplatform, created in 1987.
PERL essentially allows you to conceive processing programs.
Code Examples
Let's start with very simple codes. The more you progress, page after page, the more sophisticated the scripts will be. However, you must pass the cape of 30 to 40 pages per level, before moving on to the next step... COPY AND IMMERSE YOURSELF!
C 0001 - Hello World !
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
use strict; =comment while(my $ex1 = ) { print $ex1; } =cut print 'Hello World !'
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0002 - Variables
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
$a = 88; $b = 'Résultat:'; print "$b", $a * $a;
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0003 - List
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
%a = ( Joseph => ' Mariani', Julie => ' Hollande', Christian => ' Turquoise' ); print $a{Julie}; print $a{Christian};
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
C 0004 - Showing a variable
Reproduce this code (please do not copy-paste!). Watch out for the indentation !
@a = ('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'); print $a[2]; my @b = @a[2, 4]; # @b = ( 'Wednesday', 'Saturday' ) my @c = @a[2..4]; # @c = ( 'Wednesday', 'Tuesday', 'Friday' )
Reproduce this code, choosing one of the compilers below (♦ see DEF) (don't copy-paste! It would be too easy). They have the same function, just pick up one according to your preferences.
When you copy your code, replace the existing code (by default) with your own.
Warning ! For some of these compilers, you might have to choose the programming language yourself, in a specific menu which is offered to you. Of course, don't forget to click on RUN !
PERL Technical Specifications
Info+ (PERL)
* Created by Larry Wall
* Developed by The PERL Foundation
* Influenced by Objective C, Basic and Eiffel
* Cross-platform
* GNU and Artistic Licenses
Tools+ (PERL)
Practical Cases
CASE 1
BASIC LEVEL
Prepare the working environment
These recommendations will get you started with PERL as comfortably as possible.
CASE 2
ADVANCED LEVEL
AJAX/JSON
This little kit will help you understand how PERL works with AJAX/JSON.
CASE 3
News
- PERL
- Hits: 275