Md. Almas Ali

Results 60 comments of Md. Almas Ali

This ends up this REP for now. We don’t have OOP fully supported yet. We will move to OOP model in the future.

As we are planning to make it most developer friendly language, we are going to replace `include` with `import`.

Added `as` keyword support #142

Make sense. PR welcome.

- [x] `json` is now supported #107 - [x] Test cases #109 - [x] File processing example #113

- [x] Requests API support has beed added #124

This is not over yet!! 😐 Still getting issue in my VSCode in strict mode enabled. Every line is Red flagged. We need to fulfil `mypy --strict . ` checking....

Python implementation. Basic example like builtin `argparse` module. Will be more advance. ```python import sys class ArgumentParser: def __init__(self, description): self.options = {} self.description = description def add_option(self, option, description,...

More OOP concepts has been updated as proposal. A huge list to complete!! 🥱

The main reason why I wanted to add `fallthrough` is to make free fall behavior in `switch` statement like in C, C++ or Java language. Example: https://www.geeksforgeeks.org/fall-through-condition-in-java/