Help for this page

Select Code to Download


  1. or download this
    my $value = (if condition?  then this: else this);
    
  2. or download this
    if($some_var eq 'X')
    {
    ...
    {
        $this_var = 'Run using standard format';
    }
    
  3. or download this
    $this_var = ($some_var eq 'X'? 'Run using X format':'Run using standar
    +d format');