Help for this page

Select Code to Download


  1. or download this
    home> int a=1+1\
    > +2; echo $a
    4
    
  2. or download this
    home> a=1+<cr>
    -bash: 1+: syntax error: operand expected (error token is "+")
    
  3. or download this
    home> for ((i=0;i<10;++i)); then<cr>
    > [...]