📝 Explain script purpose in docstings

forga/process/fr/embarquement#6
This commit is contained in:
freezed 2021-04-13 00:57:40 +02:00
parent 7e64995609
commit 165d391a4a
1 changed files with 21 additions and 0 deletions

21
tuto-pysdur/pgcd.py Normal file
View File

@ -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