1
0
Fork
You've already forked java
0
A repository that holds my java programs
Java 96.4%
Shell 3.6%
Find a file
2023年06月11日 23:18:37 +03:00
basics Write into a file using Java 2023年06月11日 23:18:37 +03:00
exercises chore: Add a cardinal point enum 2023年06月03日 17:25:17 +03:00
school-work Add a shape dimensions "calculator" 2023年06月02日 13:27:34 +03:00
.editorconfig Add .editorconfig file 2023年05月12日 18:00:04 +03:00
.gitignore chore: Create a hello world program 2023年05月11日 14:45:31 +03:00
CODE_OF_CONDUCT.md Add a CODE_OF_CONDUCT 2023年05月15日 21:36:11 +03:00
LICENSE chore: Add a license 2023年05月11日 14:51:34 +03:00
README.md Add running instructions 2023年05月18日 09:33:44 +03:00

Java Project Repository

Welcome to the Java Project Repository! This repository serves as a collection of my Java projects and random codes as I learn and explore the language. Feel free to browse through the files and contribute if you'd like. Your contributions, feedback, and suggestions are greatly appreciated!

Contributing

If you'd like to contribute to this repository, follow the steps below:

  1. Fork the repository.
  2. Clone the forked repository to your local machine.
  3. Create a new branch for your contribution: git checkout -b your-branch-name.
  4. Make your changes, additions, or bug fixes.
  5. Test your changes to ensure they work as intended.
  6. Commit your changes: git commit -m "Add your commit message here".
  7. Push your changes to your forked repository: git push origin your-branch-name.
  8. Open a pull request in this repository, providing a detailed description of your changes.

Please make sure to adhere to the existing code style, conventions, and documentation guidelines.

Running

If you want to run/compile the program then you must have both java and javac installed.
If not, you can install them at https://www.oracle.com/downloads/#category-java

Then run if you are on a GNU/Linux Operating system:

java file_name.java # To compile java files
javac file_name # To run the compiled file, it shouldn't have an extension

That should compile and run most of the files in the basics folder.

You can also just use the run.sh file by running ./run.sh and it will compile the latest edited files in the folder.

Issues

If you encounter any issues with the projects or have ideas for improvements, please feel free to open an issue in the repository. Provide a clear and detailed explanation of the problem or suggestion, along with any relevant information.

License

This project is licensed under the UNLICENSE. You are free to use, modify, and distribute the code as permitted by the license.

Happy coding!