From 87a45646c52c4345fc7ec6fe86df36f03483006d Mon Sep 17 00:00:00 2001 From: altaros97 Date: Tue, 7 Aug 2018 09:47:52 -0600 Subject: [PATCH 1/2] Se agrega la solucion al issue31 --- holiwis.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 holiwis.py diff --git a/holiwis.py b/holiwis.py new file mode 100644 index 0000000..5f0fbaa --- /dev/null +++ b/holiwis.py @@ -0,0 +1,5 @@ +def issue31(mensaje): + print(mensaje) + return + +issue31("Hola Mundo") From 5106ffdfc9aa728a40d63b5143b047ad0ff0616f Mon Sep 17 00:00:00 2001 From: altaros97 Date: Tue, 7 Aug 2018 10:05:06 -0600 Subject: [PATCH 2/2] =?UTF-8?q?Se=20agrega=20documentaci=C3=B3n=20a=20holi?= =?UTF-8?q?wis.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- holiwis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/holiwis.py b/holiwis.py index 5f0fbaa..4bdf33d 100644 --- a/holiwis.py +++ b/holiwis.py @@ -1,4 +1,5 @@ -def issue31(mensaje): +def issue31(mensaje): + '''Funcion que imprime el mensaje del usuario ''' print(mensaje) return