watermark logo

Up next

04 - Dissecting our Hello World Application (In Yoruba)

1 Views· 01/29/24
Boina123
Boina123
2 Subscribers
2
In Comedy

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/ol....amide-akinoso-361269
Instagram: https://www.instagram.com/oakinoso/
Twitter: https://twitter.com/OlamideAkinoso
facebook: https://www.facebook.com/olapresi4j

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();


}


}
}

Show more


 0 Comments sort   Sort By


Up next