fork download
  1. #!/bin/bash
  2.  
  3. tablica=(element1 element2 element3)
  4.  
  5. echo ${tablica[*]}
  6.  
Success #stdin #stdout 0.02s 5312KB
stdin
Standard input is empty
stdout
element1 element2 element3