diff --git a/tuto-pysdur/pgcd.py b/tuto-pysdur/pgcd.py new file mode 100644 index 0000000..473cd45 --- /dev/null +++ b/tuto-pysdur/pgcd.py @@ -0,0 +1,21 @@ +#!/usr/bin/env python3 +# coding: utf8 + +""" +Author: freezed <2160318-free_zed@users.noreply.gitlab.com> 2021-04-13 +Version: 0.1 +Licence: `GNU GPL v3` GNU GPL v3: http://www.gnu.org/licenses/ + +This is a script following +https://gitlab.com/forga/process/fr/embarquement/-/issues/6 + +The goal is to build durable python script using standard library +""" + + +def pgcd(a,b): + """ + This function find the Greatest Common Divisor (PGCD in French) + between a & b + """ + pass