Commit bb3b18ea authored by EmreTr1's avatar EmreTr1
Browse files

README.md: update

parent fa537be4
...@@ -3,3 +3,31 @@ Minecraft's MoLang parser & evaluator implementation in Java ...@@ -3,3 +3,31 @@ Minecraft's MoLang parser & evaluator implementation in Java
#### What's MoLang #### What's MoLang
> MoLang is a simple expression-based language designed for fast calculation of values at run-time. Its focus is solely to enable script-like capabilities in high-performance systems where JavaScript is not performant at scale. We need scripting capabilities in these low-level systems to support end-user modding capabilities, custom entities, rendering, and animations. > MoLang is a simple expression-based language designed for fast calculation of values at run-time. Its focus is solely to enable script-like capabilities in high-performance systems where JavaScript is not performant at scale. We need scripting capabilities in these low-level systems to support end-user modding capabilities, custom entities, rendering, and animations.
##### Credits:
- [MoLang](https://github.com/bridge-core/MoLang)
##### Repos:
```xml
<repositories>
<repository>
<id>bedrockk-releases</id>
<url>https://bedrockk.jfrog.io/artifactory/maven-releases/</url>
</repository>
<repository>
<id>bedrockk-snapshots</id>
<url>https://bedrockk.jfrog.io/artifactory/maven-snapshots/</url>
</repository>
</repositories>
```
##### Dependency:
```xml
<dependency>
<groupId>com.bedrockk</groupId>
<artifactId>molang</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
```
rootProject.name = 'MoLang' rootProject.name = 'molang'
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment