├── .gitignore ├── LICENSE ├── README.md └── src ├── AssignmentIncDecOperators.kt ├── Comments.kt ├── Constant.kt ├── FirstApp.kt ├── MathOperations.kt └── Variables.kt /.gitignore: -------------------------------------------------------------------------------- 1 | # Intellij 2 | .idea/ 3 | out/ 4 | *.iml 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Houari Zegai 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kotlin Tutorial Course 🎉 دورة تعليم البرمجة بلغة الكوتلن 2 | Step by step to build Kotlin Apps. codes & files for **youtube** :movie_camera: tutorial :green_heart:. 3 | Check the videos tutorial [**here**](https://www.youtube.com/playlist?list=PLd5-bvEurdb9f52oQL03ezcy4OV_Z_oYT) 4 | 5 |
6 | هذه الدورة مجانية وباللغة العربية، موجهة للمبتدئين والمحترفين وإلى كل من يريد تعلم لغة الكوتلن والشرح فيها بطريقة مبسطة جدا جدا، وركزنا على الأساس ثم إلى الإحتراف بإذن الله
7 | يمكنك متابعة فيديوهات الدورة من هذا الرابط
8 | إضغط هنـا
9 |
10 |
11 | ### Follow me
12 | [Linkedin](https://www.linkedin.com/in/houarizegai) |
13 | [Facebook](https://www.facebook.com/HZegai) |
14 | [Youtube](https://www.youtube.com/HouariZegai) |
15 | [Twitter](https://www.twitter.com/HouariZegai) |
16 | [Instagram](https://www.instagram.com/HouariZegai)
17 |
18 | .سبحَانَكَ اللَّهُمَّ وَبِحَمْدِكَ، أَشْهَدُ أَنْ لا إِلهَ إِلأَ انْتَ أَسْتَغْفِرُكَ وَأَتْوبُ إِلَيْكَ
19 |
--------------------------------------------------------------------------------
/src/AssignmentIncDecOperators.kt:
--------------------------------------------------------------------------------
1 | fun main(args: Array