-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.java
More file actions
46 lines (44 loc) · 1.6 KB
/
hello.java
File metadata and controls
46 lines (44 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* hello.java
*
* A simple test class to verify Java installation and compilation environment.
* This utility class is used for initial setup verification and development
* environment testing for the Nkwa Real Estate Expenditure Management System.
*
* The class includes a transparency notice about AI utilization in the project
* development process, maintaining ethical disclosure practices.
*
* Usage: java -Dfile.encoding=UTF-8 hello
*
* @author Group 68, University of Ghana
* @version 1.0
* @since 2025
*/
/**
* Hello is a simple utility class for environment testing.
*
* This class serves as:
* - Java installation verification tool
* - Compilation environment test
* - UTF-8 encoding validation
* - Development setup confirmation
*
* The class outputs a hello world message along with a transparency
* notice regarding AI assistance in the project development.
*/
public class hello {
/**
* Main method for testing Java environment setup.
*
* Outputs a greeting message and transparency notice about AI utilization
* in the project development process. Can be used to verify that Java
* is properly installed and configured with UTF-8 encoding support.
*
* @param args Command line arguments (not used)
*/
public static void main(String[] args) {
// Check if Java works on the development environment
System.out.println("Ghc | Hello World!, we want to maintain transparency and let you know Artificial Intelligence was utilized in this project");
// Recommended execution: java -Dfile.encoding=UTF-8 hello
}
}