Search
 
SCRIPT & CODE EXAMPLE
 

PERL

perl postfix

# Basic syntax:
statement if condition;
statement unless condition;

# Example usage:
my $x = 3;
my $y = 5;
# run the statement on the left only if the statement on the right is true
print "x is less than y
" if $x < $y;
--> x is less than y

# run the statement on the left only if the statement on the right is false
print "x is less than y
" unless $x > $y;
--> x is less than y
Comment

PREVIOUS NEXT
Code Example
Perl :: perl substitution 
Perl :: perl add key to hash 
Perl :: perl for loop 
Perl :: perl mongodb conf location 
Perl :: perl mechanize check mirror response for errors 
Perl :: How to run a pearl script 
Pascal :: pascal pause 
Pascal :: wait in pascal 
Pascal :: does not equal in pascal 
Powershell :: takeown cmd 
Powershell :: powershell scriptblock return variable 
Gdscript :: gdscript variables 
Abap :: abap concatenate 
Cobol :: Cobol reverse a string 
Assembly :: havong space between lines of richtext in flutter 
Assembly :: keyevent to char 
Assembly :: bidirectional binding between string Property and integerproperty 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: list all node processes 
Javascript :: javascript radian to degree 
Javascript :: check react version terminal windows 
Javascript :: jquery only number allowed to 10 digit 
Javascript :: count number of checkboxes in html jquery 
Javascript :: javascript lowercase string 
Javascript :: regex date validation mm/dd/yyyy 
Javascript :: how to console.log formData 
Javascript :: js scroll to id 
Javascript :: sleep for 1 second 
Javascript :: jquery css add important 
Javascript :: dconf-editor install terminal 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =