Hacker News new | ask | show | jobs
by eric_the_read 3934 days ago
My gdb-fu is weak, but don't you have to have a binary that you're debugging to do that? I'm thinking of this as more of an exploratory thing-- poking around the edges of an API until I feel comfortable enough with it to start writing real code.
1 comments

Sure, but you could compile:

    #include <my_api.h>
    
    int main() { return 0; }