IronPython
CLPython
IronPython | CLPython | |
---|---|---|
7 | 6 | |
2,680 | 379 | |
0.4% | 0.0% | |
8.9 | 0.0 | |
about 2 months ago | about 1 year ago | |
C# | Common Lisp | |
Apache License 2.0 | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
IronPython
- IronPython β Python 3 for .NET
-
Does Python plan to add JIT or get rid of the GIL?
Sadly, both Jython and IronPython have stalled somewhat. IronPython is slowly working towards Python 3 support. Jython has a roadmap towards Python 3 support, but their version 3 repo is not in active development.
-
How are Python and C related? I've read that Python is 'made from C'. Does that mean that Python is just an abstraction of lots of large C functions?
The program I linked is the Python interpreter you're probably using, but the abstract set of rules that make up Python are not in any particular way tied to C. You could also use a Java program or a C# program to interpret your Python code. They've even made Python in Python itself, although it uses a more restricted version of Python so it's easier to compile it.
-
Will we ever get a new CLR language to replace C# Like Kotlin did for Java?
Itβs up to date https://github.com/IronLanguages/ironpython3/releases/tag/v3.4.0-beta1
- what is the future of ML.NET?
-
A Decade Later, .NET Developers Still Fear Being 'Silverlighted' by Microsoft -- Visual Studio Magazine
I mean, there is active work on the repo for it. They even just released a new alpha version yesterday for Python 3.4 support.
- IronPython 3.4.0-alpha1 is available
CLPython
-
Smalltalk, Haskell and Lisp
The semi-colon symbol is the single-line comment symbol in Lisp, but the percent symbol means nothing special in Lisp.
SET-MACRO-CHARACTER is used to modify what happens when certain characters are found while reading code. In this case, SET-MACRO-CHARACTER is being used to instruct Lisp to start treating % as if it were a semi-colon (i.e. the third line is a comment), thus extending the syntax of Lisp on-the-fly.
The (GET-MACRO-CHARACTER #\;) portion could have been any code at all; GP could have defined % to do anything, such as "treat the remainder of this line as if it were a line of Python code", using calls to a Python implementation, such as cl-python [0].
[0] = <https://github.com/metawilm/cl-python>
-
Why Static Languages Suffer From Complexity
C++, ~haskell, python, mathematica... capisce? :)
-
You loved running JavaScript in your web browser
we need to go deeper https://common-lisp.net/project/clpython/
- Common Lisp implementation in Python
-
Anybody using Common Lisp or clojure for data science
cl-python
-
Compiler in Lisp
Python
What are some alternatives?
MicroPython - MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
PySec - OWASP Python Security Project
Grumpy - Grumpy is a Python to Go source code transcompiler and runtime.