function funcPlotter(func)
  x = 0:0.1:10.0;
  plot(x,func(x));
end