Skip to content

Instantly share code, notes, and snippets.

/**
* Not completed, hey dude at least give this a try and finish it instead of asking people to do your homework plox
*/
public class EmptyRectangle {
private static String createXAxisWall(int width) {
String firstStar = "*";
String midDashes = "";
for (int i = 0; i < width - 2; i++) {
midDashes += "-";
package com.anemortalkid;
import java.awt.Desktop;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;