Skip to content

Instantly share code, notes, and snippets.

@0xDynamic
Last active March 13, 2021 11:14
Show Gist options
  • Save 0xDynamic/f69a47eb003f73c6c7e30c65da6f466f to your computer and use it in GitHub Desktop.
Save 0xDynamic/f69a47eb003f73c6c7e30c65da6f466f to your computer and use it in GitHub Desktop.

Revisions

  1. 0xDynamic revised this gist Mar 13, 2021. 1 changed file with 0 additions and 1 deletion.
    1 change: 0 additions & 1 deletion Hello.cpp
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,3 @@
    #include <stdio.h>
    void Introduction()
    {
    printf("\x1b[92m Welcome to my Github !\n");
  2. 0xDynamic revised this gist Mar 13, 2021. 1 changed file with 2 additions and 3 deletions.
    5 changes: 2 additions & 3 deletions Hello.cpp
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,6 @@
    #include <stdio.h>
    #define COLOR_GREEN "\x1b[32m"
    void Introduction()
    {
    printf(COLOR_GREEN, "Welcome to my Github !\n");
    printf(COLOR_GREEN, "Hope you have a good day, 1337");
    printf("\x1b[92m Welcome to my Github !\n");
    printf("\x1b[95m Hope you have a good day, 1337");
    }
  3. 0xDynamic created this gist Mar 13, 2021.
    7 changes: 7 additions & 0 deletions Hello.cpp
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    #include <stdio.h>
    #define COLOR_GREEN "\x1b[32m"
    void Introduction()
    {
    printf(COLOR_GREEN, "Welcome to my Github !\n");
    printf(COLOR_GREEN, "Hope you have a good day, 1337");
    }