▲ | psychoslave 2 days ago | |||||||
Also note that the following is a valid Crystal-lang code:
As they put it:>Crystal is a general-purpose, object-oriented programming language. With syntax inspired by Ruby, it's a compiled language with static type-checking. But this time, one can probably say that Crystal will lake the benefits of ecosystem that only a large popular language enjoy. I guess on that side F#, relying on .Net, is closer to Kotlin with Java ecosystem. | ||||||||
▲ | paddim8 2 days ago | parent [-] | |||||||
The only difference is that you have to specify the type of the list when you declare it though... That's not really a big deal. List<string> names = ["Peter", "Julia", "Xi"]; names.Select(name => $"Hello, {name}").ForEach(greeting => Console.WriteLine($"{greeting}! Enjoy your C#")) or new List<string> { "Peter", "Julia", "Xi" }.Select(name => $"Hello, {name}").ForEach(greeting => Console.WriteLine($"{greeting}! Enjoy your C#")) | ||||||||
|