An open API service indexing awesome lists of open source software.

https://github.com/appcypher/raccoon

Python-like syntax for Rust-like performance
https://github.com/appcypher/raccoon

Last synced: about 1 year ago
JSON representation

Python-like syntax for Rust-like performance

Awesome Lists containing this project

README

          



Raccoon Logo

Raccoon

`raccoon` is a language with Python 3.x syntax that is amenable to static analysis. The repository both defines the spec of the language and contains a reference implementation of the compiler.

**Raccoon will not maintain full syntactic and semantic compatibility with Python**. Several dynamic elements known of Python are not available in Raccoon. While Raccoon prioritizes a design that benefits static analysis, it still allows Python's level of flexibility where statically determinable.

Raccoon compiler implementation generates WebAssembly code.

Below is an example of what Raccoon currently looks like:

```py
class Person:
"""
Class for creating details about a person.
"""

population = 0

def init(self, name, age):
"""
Creates a new person
"""

self.name = name
self.age = age

Person.population += 1

def del(self):
"""
Decrement population
"""

Person.population -= 1

def debug(self, f):
"""
Create a string representation of object
"""

return f.debug_class("Person")
.field("name", self.name)
.field("age", self.age)

jane = Person("Jane Doe", 23)
print("jane =", jane)
```