An open API service indexing awesome lists of open source software.

https://github.com/kernel-loophole/java

Java programming
https://github.com/kernel-loophole/java

Last synced: over 1 year ago
JSON representation

Java programming

Awesome Lists containing this project

README

          

![python pratice](java.jpg)
# 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");

```