✒️
javaDraw
  • Home
  • Documentation
  • Guides
    • Installation and Setup
      • Replit
      • CodingRooms
    • Getting Started
    • Quickstart Examples
  • Quick Reference
    • Window
    • Key
Powered by GitBook
On this page
  • Installation
  • Replit
  • Coding Rooms
  • More Coming Soon! (VSCode, IntelliJ, Eclipse, etc)
  • Testing Your Installation

Was this helpful?

  1. Guides

Installation and Setup

In order to install javaDraw, you must have the Java Runtime Environment (>=1.8) installed.

PreviousDocumentationNextReplit

Last updated 3 years ago

Was this helpful?

Installation

To install javaDraw, you must download the JAR file from the latest release on GitHub:

You will need to place this JAR file into your project via whatever means are provided to you by your workspace environment. There are a couple of examples here, but some cases may vary.

Replit

Coding Rooms

More Coming Soon! (VSCode, IntelliJ, Eclipse, etc)

Testing Your Installation

You can verify that you have installed javaDraw to your environment by creating and running this test program:

import javadraw.*;

public class TestProgram extends Window {
    
    public static void main(String[] args) {
        Window.open();
    }
    
    public void start() {
        print("Hello, javaDraw!");
    }
}

Replit
CodingRooms
Releases · javadraw/javadrawGitHub
Logo