An open API service indexing awesome lists of open source software.

https://github.com/daslixou/lemonlang

Programming Language created for fun - Developed by DasLixou in C#
https://github.com/daslixou/lemonlang

programming-language

Last synced: 9 months ago
JSON representation

Programming Language created for fun - Developed by DasLixou in C#

Awesome Lists containing this project

README

          

[license]: https://github.com/DasLixou/LemonLang/blob/main/LICENSE

[license-shield]: https://img.shields.io/github/license/DasLixou/LemonLang?color=dddddd&label=License&logo=Github

[ ![license-shield][] ][license]

# Lemon Lang
Programming Language created for fun - Developed by DasLixou in C#

## HelloWorld Example
```js
import lemon.std:io;

func main() {
stdio.Console.println("Hello World!");
}
```

## Building & Contributing

### Clone the Repository

To Clone this Repository, open a terminal in a folder where you want to create the subfolder in and type

```bash
# With HTTP:
git clone https://github.com/DasLixou/LemonLang.git

# With SSH:
git clone ssh://git@github.com/DasLixou/LemonLang.git
```

### Build

> Make sure that you have the DotNet SDK installed.

To build the project, just open a terminal in the directory where this project is cloned.
Now type:

```bash
dotnet run # runs like a script
# or
dotnet build # builds the application in the bin folder
```

and hit enter.

## Contributors