This class provides a simplified interface between simple Java process for input and output and the methods defined in the IB's JETS standard for the Option C (OOP) examination.
🔵 Without Maven/Gradle
- Go here and click 'download' to get IBIO
- In your IDE (code editor), go to your project settings ('Project Structure' in IntelliJ)
- Find the option to install a library/dependency/jar
- Once prompted, select the IBIO jar file you downloaded in step 1
🔵 Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.vardy</groupId>
<artifactId>IBIO</artifactId>
<version>1.0</version>
</dependency>
🔵 Gradle
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.vardy:IBIO:1.0'
}
Import for use in a class:
import dev.vardy.IBIO;
Example method calls:
IBIO.output("Hello, world");
IBIO.input("What is your favourite colour?");
JETS specification with usage of IBIO:
https://ib.compscihub.net/wp-content/uploads/2015/04/JETS-Java-rules1.pdf