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

https://github.com/aliahadmd/cypherscript

Building Programming Language for learning purpose.
https://github.com/aliahadmd/cypherscript

cypherscript language programming-language

Last synced: 2 months ago
JSON representation

Building Programming Language for learning purpose.

Awesome Lists containing this project

README

        

# hello world

## active virtual env

```bash
source venv/bin/activate
```

## The following command creates a file called requirements.txt that enumerates the installed packages.

```bash
pip freeze > requirements.txt
```

## This file can then be used by collaborators to update virtual environments using the following command.

```bash
pip install -r requirements.txt
```