Skip to content

Commit

Permalink
Merge pull request #5786 from EdGonzz/main
Browse files Browse the repository at this point in the history
Reto #5 - JavaScript, Python, Go, C#
  • Loading branch information
kontroldev authored Nov 18, 2023
2 parents ba8071b + 8fbc5db commit 7ef485d
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Retos/Reto #5 - HOLA MUNDO [Fácil]/c#/EdGonzz.cs
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");
}
}
7 changes: 7 additions & 0 deletions Retos/Reto #5 - HOLA MUNDO [Fácil]/go/EdGonzz.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "ftm"

func main() {
ftm.println("Hola Mundo!")
}
11 changes: 11 additions & 0 deletions Retos/Reto #5 - HOLA MUNDO [Fácil]/javascript/EdGonzz.js
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!')
1 change: 1 addition & 0 deletions Retos/Reto #5 - HOLA MUNDO [Fácil]/python/EdGonzz.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print("Hola Mundo!")

0 comments on commit 7ef485d

Please sign in to comment.