04 - Dissecting our Hello World Application (In Yoruba)
This video explains further the "Hello World" application that was developed in the last video.
Follow me on the platforms below to get Live updates on new videos:
LinkedIn: https://www.linkedin.com/in/olamide-a...
Instagram: https://www.instagram.com/oakinoso/
Twitter: https://twitter.com/OlamideAkinoso
facebook: https://www.facebook.com/olapresi4j
facebook Page: https://www.facebook.com/Progr....amming-In-Yoruba-101
The code for this tutorials
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine("Welcome to programming tutorial in Yoruba");
Console.ReadLine();
}
}
}