Skip to content

Instantly share code, notes, and snippets.

@barbeque
Created July 28, 2018 04:03
Show Gist options
  • Select an option

  • Save barbeque/c159baae7f1c7e53880731da3098bc2d to your computer and use it in GitHub Desktop.

Select an option

Save barbeque/c159baae7f1c7e53880731da3098bc2d to your computer and use it in GitHub Desktop.
int main(void) {
WindowPtr TheWindow;
InitGraf(&thePort);
InitFonts();
InitWindows();
TheWindow = GetNewWindow(128, 0L, (WindowPtr)-1L);
SetPort(TheWindow);
MoveTo(30, 50);
DrawString("\pHello, World");
while(!Button()) { }
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment