radon
radon copied to clipboard
The Radon Programming Language
**Is your feature request related to a problem? Please describe.** It will make Radon more powerful. **Describe the solution you'd like** A sample example. ```radon try { 1/0 } catch...
Couple of things are going to be changed with this proposal. Currently we have `include` keyword to handle imports. - [x] We will replace `include` with `import`. ```radon import stdlib...
Our hole codebase need to refactor as soon as possible before it’s too late. We have to support `type annotations` before too much unknown bugs encounter. We will make sure...
Add the incapsulation, and realistic OOP(Object Oriented Programming), add the json, request, api supports
I tried this code: ```radon # this works value = json.loads(response_post) assert value["id"] == 101 # this don't assert json.loads(response_post)["id"] == 101 ```
**Describe the solution you'd like** What we have now. ```radon json = Json() json.loads(...) json.dumps(...) ``` What it should be. ```radon Json.loads(...) Json.dumps(...) ``` For this we can create a...
We are making Radon a true object oriented language like Python. We are willing to add almost all natures a OOP language supports. - [x] `class` keyword support. - [x]...