radon icon indicating copy to clipboard operation
radon copied to clipboard

The Radon Programming Language

Results 35 radon issues
Sort by recently updated
recently updated
newest added

**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...

enhancement
core
proposal

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...

enhancement
syntax
core
proposal

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...

enhancement
core
proposal

Add the incapsulation, and realistic OOP(Object Oriented Programming), add the json, request, api supports

enhancement
stdlib
syntax
OOP

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 ```

bug
medium

**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...

enhancement

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]...

enhancement
syntax
OOP
proposal