https://github.com/felixfong227/mlpfim-programming-language
And other MLP "programming language",but reading the real source files
https://github.com/felixfong227/mlpfim-programming-language
mlp mylittlepony pony programming-language
Last synced: 10 months ago
JSON representation
And other MLP "programming language",but reading the real source files
- Host: GitHub
- URL: https://github.com/felixfong227/mlpfim-programming-language
- Owner: felixfong227
- Created: 2016-11-17T14:38:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-07T11:10:14.000Z (almost 9 years ago)
- Last Synced: 2025-02-12T07:33:22.662Z (12 months ago)
- Topics: mlp, mylittlepony, pony, programming-language
- Language: JavaScript
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#My Little Pony Friendship Is Magic Programming Language

##How to set it up? `On development`
#Install the interperter
```
$ npm install mlpfim-programming-language -g
```
##How to set up and running?
##Demo code
Basic output
```javascript
dearPC "Today i learn how to code";
```
Basic input
```javascript
spike name;
```
If statement
```
if true && 1 > 0
console.log(true)
else
console.log(false)
;
```
and much more...
###Working program
```javascript
`A Hello World Program?`
dearPC "Hello what is your name?";
spike name;
dearPC "Nice to meet you ${name} :D";
`This is a comment`
```
##JavaScript(NodeJS) error fall back
If your mlpfim code hit an error,do you allow to try running in the JavaScript engine?by default is set to `true`
Go to the config file `mlpfimconfig.json`and change it `true` => `false`
##Config file
The config file it tell the interperter how to work with your program,and the config file gen by auto,so you don't need to worry about that.
Please fork this project and take it awesome
This project mainly just for fun,and still on "development"