Skip to content

Latest commit

 

History

History
34 lines (29 loc) · 1.16 KB

CONTRIBUTING.md

File metadata and controls

34 lines (29 loc) · 1.16 KB

⚡️ Contribution Guidelines

  1. Create a markdown file in the lang folder with the name of the language you want to add (e.g.: java.md).
  2. Start with the below template and fill the appropriate fields with the required information.
---
lang: Java
syntax: java
title: Java is a statically typed JVM based programming language.
author: devstrons
---

```java
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!"); 
    }
}
```

## What is Java?
## Why to use Java?
## Setting up Java development environment
## Popular Java IDEs/Editors
## Some cool projects in Java
## Conclusion
  1. Submit a pull request with the title Adding [language] language
  2. That's it! ✨ Now your pull request will be merged as soon as possible.

Note: For a faster and easier process, you can use the Gitpod Ready-to-Code service and run all the commands there.
Gitpod will automatically run npm install for you. After that, you can run all the commands you want.