/*! * @file main.c * @author Hipolito Guzman * @date 26 Nov 2013 */ /*! * @addtogroup common * @{ * @defgroup common_helloworld Hola Mundo * @{ * @brief Prints "Hola, mundo" in the console * * Extended description goes here */ #include /*! * @param void Receives no parameter * @return 0, everytime * @todo Translate printed message to English * @bug Text appears in Spanish, should appear in English * @brief main() function of the program */ int main (void) { printf("Hola, mundo!!\n"); return 0; } /*! * @} * @} */