Skip to content

vardy/IBIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IBIO

Version License

Overview

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.

Installation

🔵 Without Maven/Gradle

  1. Go here and click 'download' to get IBIO
  2. In your IDE (code editor), go to your project settings ('Project Structure' in IntelliJ)
  3. Find the option to install a library/dependency/jar
  4. 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'
}

Usage

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

About

Library for the standard IBIO class for International Baccalaureate Computer Science students.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages