https://github.com/kernel-loophole/java
Java programming
https://github.com/kernel-loophole/java
Last synced: over 1 year ago
JSON representation
Java programming
- Host: GitHub
- URL: https://github.com/kernel-loophole/java
- Owner: kernel-loophole
- Created: 2021-11-02T13:38:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-07T12:58:59.000Z (over 4 years ago)
- Last Synced: 2025-01-24T10:46:50.552Z (over 1 year ago)
- Language: Java
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# classes
```java
public class doctor {
public String name;
public int id;
public int date;
public doctor(String name, int id, int date) {
this.name = name;
this.id = id;
this.date = date;
}
public static void diagonise()
{
System.out.print("doctor is diagonse");
}
public static void send_to_nurse()
{
System.out.print("sending to nurse");
}
public static void order_test()
{
System.out.print("ordering the patints");
```