Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace OrtizOL.Recetas.Capitulo01
- {
- class HolaMundo
- {
- public static void Main()
- {
- Utilidades.EscribirCadena("Hola, mundo");
- Console.WriteLine("\nFin de la aplicación. Presione Enter.");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement