summaryrefslogtreecommitdiff
path: root/markdown_blocks/code.md
blob: e16c4cf129889148baeabadfbb26ec91e1fe749e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
```ruby
class MyClass 
  # comment  
  @@no_of_customers=0
  def initialize(id, name, addr)
    @cust_id=id
    @cust_name=name
    @cust_addr=addr
  end
end

```