Advertisement
Fhernd

HolaMundo.cs

Aug 20th, 2017
546
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2.  
  3. namespace OrtizOL.Recetas.Capitulo01
  4. {
  5.     class HolaMundo
  6.     {
  7.         public static void Main()
  8.         {
  9.             Utilidades.EscribirCadena("Hola, mundo");
  10.  
  11.             Console.WriteLine("\nFin de la aplicación. Presione Enter.");
  12.             Console.ReadLine();
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement