16 lines
199 B
C#
16 lines
199 B
C#
using System;
|
|
|
|
namespace CPUSimulation
|
|
{
|
|
public class CPU
|
|
{
|
|
public void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Hello, CPU Simulation!");
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|