// 2001/01/16 // ymlib.com // CSS003.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CSS003 { class CSS003 { static void Main( string[] args ) { if (args.Length == 1) { string hw = "\"" + args[0] + "\" from Hello World PGM"; Console.WriteLine( hw ); } } } }