diff --git a/README.md b/README.md index 164eea8..71e5bcb 100644 --- a/README.md +++ b/README.md @@ -51,12 +51,22 @@ Start adding your names here: - I am a young developer in india - I'm currently a student! +### rahman95 +- Software Developer born in Germany raised in the UK. 🇩🇪 🇬🇧 +- Hobbies include: + - Coding + - Tinkering + - Photography + - Gastronomy +- [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) + [![github-alt][github-img]](https://github.com/rahman95) + ### Shubham Nishad - Fourth year student in Computer Science. - you can check my site [https://shubhamnishad.com/](https://shubhamnishad.com/) - [![twitter-alt][twitter-img]](https://twitter.com/shubhamnishad97) [![github-alt][github-img]](https://github.com/shubhamnishad97) - + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... diff --git a/code/rahman95.php b/code/rahman95.php new file mode 100644 index 0000000..1c5838a --- /dev/null +++ b/code/rahman95.php @@ -0,0 +1,19 @@ +name = $name; + } + + public function sayHelloWorld() + { + return "Hello World from {$this->name} 👋"; + } +} + +$class = new HelloWorld('rahman95'); +echo $class->sayHelloWorld();