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#
- Host: GitHub
- URL: https://github.com/daslixou/lemonlang
- Owner: DasLixou
- License: mit
- Created: 2022-02-09T14:16:11.000Z (about 4 years ago)
- Default Branch: release
- Last Pushed: 2022-02-19T11:54:00.000Z (about 4 years ago)
- Last Synced: 2025-06-09T12:50:09.623Z (10 months ago)
- Topics: programming-language
- Language: C#
- Homepage:
- Size: 63.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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