Skip to content
This repository has been archived by the owner on Apr 5, 2021. It is now read-only.

Commit

Permalink
Utilización de constante para la URL del video
Browse files Browse the repository at this point in the history
No nos gustan las constantes mágicas balh blah blah por lo que
ponemos una constante blah blah puteadas al energúmeno que hizo
el commit inicial blah blah malas prácticas de programación blah
blah blah.
  • Loading branch information
Lowercases committed Dec 10, 2011
1 parent f1e958d commit e8a6f54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xteban.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include <stdio.h>

#define URL_VIDEO "http://www.youtube.com/watch?v=wC22UvgdKC8\n"

main() {
printf("%s", "http://www.youtube.com/watch?v=wC22UvgdKC8\n");
printf("%s", URL_VIDEO);

return 0;

Expand Down

0 comments on commit e8a6f54

Please sign in to comment.