Previously, we are talking with aliens in C#. Now let's try to do the same on Nemerle. See code below.
using System; using System.Console; using Nemerle.Utility; using Alvas.Audio; module Program { Main() : void { rex.Data += RecorderEx.DataEventHandler(rexData); rex.Open += EventHandler(rexOpen); rex.Close += EventHandler(rex_Close); rex.Format = pcmFormat; rex.StartRecord(); WriteLine("Please press enter to exit!"); _ = ReadLine(); ...
No comments yet, be the first one to post comment.