Skip to content

Instantly share code, notes, and snippets.

@prolifel
Created March 21, 2021 05:53
Show Gist options
  • Save prolifel/0bbba90c0853e3a26ce6171e8fec82c2 to your computer and use it in GitHub Desktop.
Save prolifel/0bbba90c0853e3a26ce6171e8fec82c2 to your computer and use it in GitHub Desktop.
Kode Hello World .NET
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HelloWorld_PBKK
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine("Nama saya Clement Prolifel Priyatama");
Console.WriteLine("NRP 05111840000013");
Console.WriteLine("Dari kelas Pemrograman Berbasis Kerangka Kerja (PBKK) B");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment