Skip to content

Instantly share code, notes, and snippets.

@io12
Created January 23, 2017 23:22
Show Gist options
  • Save io12/f02ee577af56e2cb692189e5ea944faa to your computer and use it in GitHub Desktop.
Save io12/f02ee577af56e2cb692189e5ea944faa to your computer and use it in GitHub Desktop.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
#include <stdio.h> ;;
;;
void print(char *str); ;;
;;
int main(void) { ;;
print("Hello world!"); ;;;;;;;;;;;;;;
return 0; ;; ;;
} ;; ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;
;;
;;
;;
;; ;; ;;
;;;;;;
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; void print(char *str) { ;;
;; puts(str); ;;
;; } ;;
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment