From 18b2b85a28c4e8d59cd564612bb7f60019c53051 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Mon, 3 Jul 2017 16:18:02 +1000 Subject: Changed license to Unlicense, improved with/use code style --- src/election.adb | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) (limited to 'src/election.adb') diff --git a/src/election.adb b/src/election.adb index 298c82b..181da64 100644 --- a/src/election.adb +++ b/src/election.adb @@ -1,18 +1,19 @@ -with Ada.Strings.Fixed; -with Ada.Strings.Unbounded; -with Ada.Text_IO; use Ada.Text_IO; -with Rationals; -use type Rationals.Fraction; - - --- This source is licensed under Creative Commons CC0 v1.0. --- --- To read the full text, see license.txt in the main directory of this repository --- or go to https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt --- --- For a human readable summary, go to https://creativecommons.org/publicdomain/zero/1.0/ +with + + Ada.Strings.Fixed, + Ada.Strings.Unbounded, + Ada.Text_IO, + Rationals; + +use + + Ada.Text_IO; + +use type + + Rationals.Fraction; package body Election is -- cgit