#!/bin/bash

all: test

test:
	python unisubject.py

clean:
	rm -rf ./__pycache__

