Skip to content

Instantly share code, notes, and snippets.

@glauco
Created December 20, 2014 00:07
Show Gist options
  • Save glauco/cd1f548f35dd4226f819 to your computer and use it in GitHub Desktop.
Save glauco/cd1f548f35dd4226f819 to your computer and use it in GitHub Desktop.
Programming in Pascal using C
#define begin {
#define end }
#define writeln(message) printf("%s\n", message)
#include <stdio.h>
int main()
begin
writeln("Hello, World!");
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment