diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.nim | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/src/main.nim b/src/main.nim index 862d40c..a72e0c3 100644 --- a/src/main.nim +++ b/src/main.nim | |||
@@ -1,5 +1,18 @@ | |||
1 | # This is just an example to get you started. A typical binary package | 1 | # "à-la-gzip" gzip-like LZSS compressor |
2 | # uses this file as the main entry point of the application. | 2 | # Copyright (C) 2018 Pacien TRAN-GIRARD |
3 | # | ||
4 | # This program is free software: you can redistribute it and/or modify | ||
5 | # it under the terms of the GNU Affero General Public License as | ||
6 | # published by the Free Software Foundation, either version 3 of the | ||
7 | # License, or (at your option) any later version. | ||
8 | # | ||
9 | # This program is distributed in the hope that it will be useful, | ||
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | # GNU Affero General Public License for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU Affero General Public License | ||
15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
3 | 16 | ||
4 | when isMainModule: | 17 | when isMainModule: |
5 | echo("Hello, World!") | 18 | echo("Hello, World!") |