Help for this page

Select Code to Download


  1. or download this
      DB<107> @a = 1..3
     => (1, 2, 3)
     
      DB<108> @a eq "3"
     => 1
    
  2. or download this
      DB<123> (reverse @a)
     => (3, 2, 1)
    ...
     
      DB<125> "321" eq (reverse @a)
     => 1
    
  3. or download this
      DB<129> @a=(3,1,3)
     => (3, 1, 3)
    ...
     
      DB<133> @a ~~ [reverse @a]
     => ""
    
  4. or download this
      DB<143> @a=(3,1,3)
     => (3, 1, 3)
    ...
     
      DB<146> "@a" eq "@ar"
     => 1
    
  5. or download this
      DB<151> "@a"
     => "3 1 3"
    ...
     
      DB<153> "@a" eq "@b"
     => 1