Skip to content

BuddhadebKoner/Overpowered-JAVA

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Starts 11 September 2024

This repository contains projects and code written in Java, a powerful and versatile programming language used for building a wide range of applications, from mobile to enterprise-level software. Java's platform independence, object-oriented structure, and strong community support make it an excellent choice for modern software development. It offers a robust ecosystem with extensive libraries, frameworks, and tools that help streamline the development process.

Important Note

The file name and class name should be the same, including case sensitivity, to compile with javac and run with java.

Compilation and Run

Compile .java file

javac HelloWorld.java

Run .class file

java HelloWorld

First Hello Java Program

Java Screenshot

Gradle Hello World Program

Gradle Initial Program

gradle init

Gradle build.gradle

plugins {
    id 'java'
    id 'application'
}

// Main class without a package name
mainClassName = 'Main'

Gradle Build

gradle build

Gradle Run

gradle run

First Hello Java Program

Java Screenshot

Releases

No releases published

Packages

No packages published

Languages