Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hoachnt/yanghoscript
Language based on ts/js
https://github.com/hoachnt/yanghoscript
Last synced: 5 days ago
JSON representation
Language based on ts/js
- Host: GitHub
- URL: https://github.com/hoachnt/yanghoscript
- Owner: hoachnt
- Created: 2024-04-10T16:12:32.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-05-22T12:36:26.000Z (6 months ago)
- Last Synced: 2024-05-22T13:36:16.393Z (6 months ago)
- Language: TypeScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# YanghoScript
YanghoScript is a simple programming language with the ability to work with variables, arithmetic operations and display results. Was built for Vietnamese gangstersπ.
## Features
### Existing Features:
- Assignment of values to variables
- Arithmetic operations
- Outputting results
- Comment out a line of code### Upcoming Features (Not Really Soon):
- Conditional statements(Partially implemented)
- Looping constructs
- Functions
- Error handling## Installation
To get started with YanghoScript, you'll need Node.js. Download and install it from the [official Node.js website](https://nodejs.org/).
Then follow these steps:
1. Clone the repository:
```
git clone https://github.com/hoachnt/YanghoScript.git
```2. Install dependencies:
```
cd YanghoScript
npm install
```## Usage
After installation, you can use YanghoScript to execute programs written in this language. Open the `code.ys` file and write your YanghoScript code in it.
Example code:
```javascript
text BAYHETVAODAY 'Hoach';
summ BAYHETVAODAY 6 + 5;NOILIENTUC text;
NOILIENTUC summ;sumandmin BAYHETVAODAY summ - ((20 + 2) * 2);
NOILIENTUC sumandmin;
NOILIENTUC 'Chao ca lo nha minh nha';NOILIENTUC 1 UY TIN 1;
NOILIENTUC 2 NHIEU HON 1;
NOILIENTUC 1 IT HON 2;
NOILIENTUC 1 NHIEU BANG 1;
NOILIENTUC 2 IT BANG 2;NOILIENTUC 2 UY TIN 1;
NOILIENTUC 2 NHIEU HON 3;
NOILIENTUC 1 IT HON 0;
NOILIENTUC 1 NHIEU BANG 2;
NOILIENTUC 2 IT BANG 1;NEU (2 UY TIN 1) {
NOILIENTUC 'Yasuo';
} KO THI {
NOILIENTUC 'Kosuo';
}NOILIENTUC 'All Works!!!';
// NOILIENTUC 'Hello world' - comment
```To run a program, use the following command in the terminal:
```
npm start
```or
```
yarn start
```Ensure that your code is written in the `code.ys` file.
## Code Structure
YanghoScript supports the following constructs:
- Assignment of values to variables: `variable = value;`
- Arithmetic operations: `+, -, *, /`
- Use parentheses for correct order of arithmetic operations. For example, for the expression `1 + 2 * 3`, it should be written as `1 + (2 * 3)`.Examples of correct expressions:
```javascript
1 + 2 * 3; // Result: 9(incorrect)
1 + (2 * 3); // Result: 7(correct)
10 / (2 + 3); // Result: 2(correct)
```Using parentheses ensures the correct order of operations and prevents errors in calculations.
## Important
YanghoScript is in an early stage of development and may have some limitations and shortcomings. If you find any bugs or have suggestions for improvements, feel free to report them in the Issues section on GitHub.
Don't forget that YanhoScript is a joke programming language.
## Contributors β¨
Thanks goes to these wonderful people:
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!