-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5786 from EdGonzz/main
Reto #5 - JavaScript, Python, Go, C#
- Loading branch information
Showing
4 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using System; | ||
|
||
public class HolaMundo | ||
{ | ||
public static void Main() | ||
{ | ||
Console.WriteLine("Hola Mundo"); | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package main | ||
|
||
import "ftm" | ||
|
||
func main() { | ||
ftm.println("Hola Mundo!") | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// ``` | ||
// /* | ||
// * Escribe un !Hola Mundo! en todos los lenguajes de programación que puedas. | ||
// * Seguro que hay algún lenguaje que te llama la atención y nunca has utilizado, | ||
// * o quizás quieres dar tus primeros pasos... ¡Pues este es el momento! | ||
// * | ||
// * A ver quién se atreve con uno de esos lenguajes que no solemos ver por ahí... | ||
// */ | ||
// ``` | ||
|
||
console.log('Hola Mundo!') |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
print("Hola Mundo!") |