Blog.Pause();

24/12/2009 16:57

Feliz2010

Informativo



Framework de testes para VS 2010

16/12/2009 22:52

Quer um bom framework de testes para aplicar TDD junto com o Visual Studio 2010?

EchoLink150

Facilita muito a vida…

Visual Studio



Homenagem em F#

06/12/2009 23:01
#light
open System

let listF = [70;76;65;77;69;78;71;79;32;72;69;
             88;65;32;67;65;77;80;69;65;79;33]

for c = 1 to 6 do 
    for f = 0 to listF.Length - 1 do 
        Console.Write(Char.ConvertFromUtf32(listF.Item(f)))
    Console.WriteLine()

Console.ReadLine()

Off