17 lines · cpp
1#include <stdio.h>2#include <chrono>3#include <thread>4 5void call_me() {6 printf("I was called");7 std::this_thread::sleep_for(std::chrono::seconds(3));8}9 10int11main()12{13 call_me(); // Set a breakpoint here14 return 0;15}16 17