diff --git a/README.md b/README.md index 4617884..f741952 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/code/kamaliqlaas.rb b/code/kamaliqlaas.rb new file mode 100644 index 0000000..f4a8b5e --- /dev/null +++ b/code/kamaliqlaas.rb @@ -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