Actividad 00 (Inception)#2
Open
guillermoar26 wants to merge 5 commits intojgsogo:actividadesfrom
Open
Conversation
jgsogo
reviewed
Feb 3, 2021
| @@ -1,4 +1,4 @@ | |||
|
|
|||
| #include <iostream> | |||
Owner
jgsogo
reviewed
Feb 3, 2021
Comment on lines
29
to
33
| int main() | ||
| { | ||
| cout<<message_dream("Hola!", 2, 2)<<"\n"; // HHHHoooollllaaaa!!!! | ||
| cout<<message_dream("Soy Ana", 1, 3)<<"\n"; // SSSoooyyy AAAnnnaaa | ||
| } |
Owner
There was a problem hiding this comment.
Sigue fallando, te cuento por qué: en un programa sólo puede haber una función con el mismo nombre, el compilador está encontrando dos funciones main, la que yo tenía para que se ejecuten los tests y la que tú has añadido en tu fichero
Vas a tener que eliminar/comentar estas líneas de aquí.
Suggested change
| int main() | |
| { | |
| cout<<message_dream("Hola!", 2, 2)<<"\n"; // HHHHoooollllaaaa!!!! | |
| cout<<message_dream("Soy Ana", 1, 3)<<"\n"; // SSSoooyyy AAAnnnaaa | |
| } |
jgsogo
requested changes
Feb 6, 2021
Comment on lines
29
to
32
| int main() | ||
| { | ||
| cout<<message_dream("Hola!", 2, 2)<<"\n"; // HHHHoooollllaaaa!!!! | ||
| } |
Owner
There was a problem hiding this comment.
Tienes que borrar toda la función main para que compile y pasen los tests
1ab93ef to
e638cb2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

prueba