Category Archives: Programming

Experiments with C# on a Mac.

Noticing a pattern here….? So task for tonight was to try and run a simple C# app on the Mac and since Microsoft Build ’15, they’ve announced a number of things to help people with any OS use MS tools.

Programming Challenge Day 3.

Task for today are: – Ask for a name – If its Bob/Alice, display one message – If its not Bob/Alice, display a different message. Javascript var stdIn = WScript.StdIn var str = “” stdOut.WriteLine(“Name?”); while (!stdIn.AtEndOfStream) { str = stdIn.ReadLine() if (str == “Bob”) {sayHello(str)} else if (str == “Alice”) {sayHello(str)} else {WScript.Echo (“Hello”)}… Read More »