Skip to content

Instantly share code, notes, and snippets.

@zeldangit
zeldangit / bank.m
Last active November 9, 2017 19:02
:- module bank.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- module test.
:- interface.
:- import_module io.
:- pred main(io::di, io::uo) is det.
:- implementation.