Create Tuple



examples/tuples/create.cr
a = {"Foo", "Bar", 42, true}
puts a
puts typeof(a)

b = Tuple.new("Foo", "Bar", 42, true)
puts b
puts typeof(b)

{"Foo", "Bar", 42, true}
Tuple(String, String, Int32, Bool)
{"Foo", "Bar", 42, true}
Tuple(String, String, Int32, Bool)