#include "library.h" void display_graph(const double x) { const double y = 300 + 200 * sin(x / 25); draw_point(x, y); if (x > 1) display_graph(x - 0.01); } void main() { make_window(600, 600); display_graph(600); }