Skip to content

Commit e5f4ffb

Browse files
authored
Update README.md
1 parent 16f06c9 commit e5f4ffb

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ Angela loves Omar
88

99
Learn git and github
1010

11+
## Class Naming is Pascal Case:
12+
```java
13+
class NelanForEva
14+
```
15+
16+
## Method is Camel Case:
17+
```java
18+
public void sayHello()
19+
{
20+
logln("Hello y\'all my major is "+ major+ ". My name is " + firstName + " " + lastName);
21+
}
22+
```
23+
1124
## How to compile and run Java on terminal
1225

1326
- $javac *.java

0 commit comments

Comments
 (0)