Question: how to solve delay ODE Using maple and plot the solution

can you help to solve and plot the followng delay ODE

ode:=diff(y(x),x)=1-2*y(x/2)^2;                                                                                                                                                            ics := y(0) = 2    ;            y3:= dsolve({ics, ode},numeric, delaymax = 1.7);  YY5:=odeplot(y3,x=0..10); 

Please Wait...