{EPITECH.} first year project.
An ASCII art resizable fir tree generator in C.
Navigate to the root of the repository from your Terminal and run the following command to build the tree
executable file:
gcc main.c tree.c -o tree
Run the executable file you just compiled to print out your fir tree:
./tree
Edit the main.c
file with your favorite editor:
void tree(int size);
int main(void)
{
tree(3); // Change the size here
}