Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/java/com/github/hcsp/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class Main {
// Create a static member "message" here to store the string "Hello"
// 在这里创建一个名为"message"的静态成员变量,并存储字符串"Hello"

public static String message= "Hello";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'=' 前应有空格。

public static void main(String[] args) {
System.out.println(message);
}
Expand Down