Merge pull request #97 from Iqlaas/add-kamal-iqlaas

Add name and code
This commit is contained in:
Luke Oliff 2018-10-03 08:32:57 -07:00 committed by GitHub
commit a9629f3923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View File

@ -295,6 +295,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
# K
### Kamal Iqlaas
- Pursuing Master in Business Intelligence and Data Analytics
- Love tech, learn tech, use tech, teach tech.
- [![github-alt][github-img]](https://github.com/Iqlaas)
### Karen Geerts
- I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer.
- [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters)

11
code/kamaliqlaas.rb Normal file
View File

@ -0,0 +1,11 @@
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def say_hi
puts "Hello #{@name}!"
end
end
hello = HelloWorld.new("World")
hello.say_hi