Untitled

 avatar
unknown
java
2 years ago
422 B
5
Indexable
import java.time.LocalTime;

public class Main {
  public static void main(String[] args) {
    LocalTime currentTime = LocalTime.now();
    if (currentTime.equals(LocalTime.of(21, 37))) {
      System.out.println("Klimek gwałci małe dzieci");
    } else if (currentTime.equals(LocalTime.of(4, 20))) {
      System.out.println("Klimek ujebany trawą");
    } else {
      System.out.println("Jebać klimka");
    }
  }
}
Editor is loading...