# Multiple distinct objects

```ruby
[Foo.new] * n       # incorrect (only one distinct object is created)
```

```ruby
n.of {Foo.new}      # correct
```
