https://github.com/ashp0/drast
Drast Programming Language (Attempt)
https://github.com/ashp0/drast
Last synced: 3 months ago
JSON representation
Drast Programming Language (Attempt)
- Host: GitHub
- URL: https://github.com/ashp0/drast
- Owner: ashp0
- License: bsd-3-clause
- Created: 2022-07-18T16:48:32.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-14T00:40:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-03T06:35:51.881Z (4 months ago)
- Language: C++
- Homepage:
- Size: 1.35 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Drast Programming Language

_A drastic change in programming_
[Docs](docs/docs.md) | [TODO](TODO.md)
> Project no longer in development
> **NOTE:** Drast is still in its development phase, so expect some bugs and missing features.
## Features
- **Super Simple and Easy to learn syntax** - Similar to Python's humanly syntax whilst being as fast as C
- **Semi-Object Oriented** - No need to learn all the OOP concepts
- More to come...## Example
All examples are located in [`examples`](https://github.com/Malvion/drast/tree/master/examples)
## Building
Drast is built similarly for Windows, macOS, and Linux.
Before you start building Drast, you must install these dependencies listed below:
- Windows: Install CMake and Visual Studio
- macOS: `brew install cmake`
- Linux: `sudo apt install git cmake`Run the following command after the required dependencies are installed:
```batch
git clone --recursive https://github.com/Malvion/drast
cd drast
mkdir build
cd build
cmake ..
```If all goes well, Drast should be built and ready to run! If you have encountered any errors, please report them in
the 'Issues' tab!> **NOTE:** For Windows, in the build directory, there should be a Visual Studio solution file. Double click this file,
> then build and
> run.