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.
- Host: GitHub
- URL: https://github.com/aliahadmd/cypherscript
- Owner: aliahadmd
- License: mit
- Created: 2023-06-01T15:11:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-01T17:15:03.000Z (about 2 years ago)
- Last Synced: 2025-02-07T11:14:29.226Z (4 months ago)
- Topics: cypherscript, language, programming-language
- Homepage: https://cypherscript.aliahad.com
- Size: 776 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```