View Problem

Perform an action if a condition is true (IF .. THEN)

Given a variable name, if the value is "Bob", display the string "Hello, Bob!". Perform no action if the name is not equal.
DiskEdit
ruby
if (name=='Bob')
puts "Hello, Bob!"
end
DiskEdit
ruby
puts "Hello, Bob!" if name=='Bob'
ExpandDiskEdit
erlang
if (Name == "Bob") -> io:format("Hello, ~s!~n", [Name]) ; true -> false end.
ExpandDiskEdit
erlang
case Name of "Bob" -> io:format("Hello, ~s!~n", [Name]) ; _ -> false end.
ExpandDiskEdit
erlang
Name == "Bob" andalso (begin io:format("Hello, ~s!~n", [Name]), true end).
ExpandDiskEdit
cpp C++/CLI .NET 2.0
if (name == "Bob") Console::WriteLine("Hello, {0}!", name);
ExpandDiskEdit
cpp
if (name == "Bob") std::cout << "Hello, " << name << "!" << std::endl;
ExpandDiskEdit
fantom
if (name=="Bob") echo("Hello, Bob!")
DiskEdit
csharp
if (name == "Bob") Console.WriteLine("Hello, {0}!", name);

Submit a new solution for ruby, erlang, cpp, fantom ...
There are 14 other solutions in additional languages (clojure, fsharp, go, groovy ...)