Skip to content

A collection of hello world snippets in multiple programming languages.

License

Notifications You must be signed in to change notification settings

MatteuSan/heloworld.xyz

 
 

Repository files navigation

hello world

A collection of hello world snippets in multiple programming languages.


⚡️ 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.

🛠 Building

  • npm install — Installs all dependencies.
  • npm run clean — Cleans the generated artifacts by Vite.
  • npm run dev — Starts the development server and Vite at the same time.
  • npm run build — Deletes existing build files & freshly bundles JavaScript code.
  • npm run preview — Previews the production bundles and uses production API.
  • npm run lint — Lints and formats both frontend and API code.

📰 License

The heloworld.xyz project is released under the MIT license.
Developed & maintained by the DEVSTRONS' Community. Copyright 2021 © DEVSTRONS.


YouTube @devstrons  ·  Instagram @devstrons  ·  Discord DEVSTR😊NS'  ·  Twitter @devstrons

About

A collection of hello world snippets in multiple programming languages.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 63.7%
  • HTML 26.1%
  • CSS 10.2%