Skip to content

Instantly share code, notes, and snippets.

@ngxson
Created January 12, 2018 13:20
Show Gist options
  • Save ngxson/7a6ced0434f8a9894453444f4c1a48ed to your computer and use it in GitHub Desktop.
Save ngxson/7a6ced0434f8a9894453444f4c1a48ed to your computer and use it in GitHub Desktop.
Hearty.vn - Example
#include <stdio.h>
int main() {
int array[10],i;
for (i = 0 ; i <= 10 ; i++) {
array[i] = 0;
printf("Hearty.vn\n");
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment