fork download
  1. #!bin/bash
  2. function dodawanie
  3. {
  4. read a
  5. read b
  6. c=$[a+b]
  7. echo $c
  8. }
  9. dodawanie
Success #stdin #stdout 0.03s 5312KB
stdin
Standard input is empty
stdout
0