aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNerdyPepper <[email protected]>2019-03-28 17:26:59 +0000
committerNerdyPepper <[email protected]>2019-03-28 17:26:59 +0000
commitbcc9812391f9b4049718fe43179bff467a3a73fd (patch)
tree8223bb24c5676b5663c9554fec9ff3a33db39daf
parent44055b324833dbf48b790e8cf53722fa17e65b2c (diff)
add licence terms to main.rs
-rw-r--r--src/main.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 4cde172..e03d338 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,22 @@
1/*
2 eva - an easy to use calculator REPL similar to bc(1)
3 Copyright (C) 2019 Akshay Oppiliappan <[email protected]>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>.
17
18 */
19
1use std::f64; 20use std::f64;
2use std::env; 21use std::env;
3 22