From 2db59bea57feb4648a8140515b751e8d989d2f14 Mon Sep 17 00:00:00 2001 From: jon ander Date: Thu, 10 Oct 2024 19:22:16 +0200 Subject: [PATCH] wip --- .idea/.gitignore | 3 +++ .idea/PrgServicios.iml | 8 ++++++++ .idea/inspectionProfiles/profiles_settings.xml | 6 ++++++ .idea/misc.xml | 7 +++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ creacionYEjecucion-02/Hilos01.py | 8 ++++++++ 7 files changed, 46 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/PrgServicios.iml create mode 100644 .idea/inspectionProfiles/profiles_settings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 creacionYEjecucion-02/Hilos01.py diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..eaf91e2 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/PrgServicios.iml b/.idea/PrgServicios.iml new file mode 100644 index 0000000..a80cbb1 --- /dev/null +++ b/.idea/PrgServicios.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..f8a22e9 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..fb35a39 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..c8397c9 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/creacionYEjecucion-02/Hilos01.py b/creacionYEjecucion-02/Hilos01.py new file mode 100644 index 0000000..3fe0a0c --- /dev/null +++ b/creacionYEjecucion-02/Hilos01.py @@ -0,0 +1,8 @@ +import threading +def Saludo(): + print ("hola,soy el hilo\n") + +t = threading.Thread(target=Saludo) + +t.start() +print("Hola soy el hilo principal") \ No newline at end of file