From f3b2f09e642047d869644e922a67796a1b4c93f1 Mon Sep 17 00:00:00 2001 From: NerdyPepper Date: Thu, 28 Mar 2019 22:58:41 +0530 Subject: add copyright notice to all source files --- src/error/mod.rs | 4 ++++ src/lex/mod.rs | 4 ++++ src/parse/mod.rs | 4 ++++ 3 files changed, 12 insertions(+) (limited to 'src') diff --git a/src/error/mod.rs b/src/error/mod.rs index a269555..649ef08 100644 --- a/src/error/mod.rs +++ b/src/error/mod.rs @@ -1,3 +1,7 @@ +/* Copyright (C) 2019 Akshay Oppiliappan + * Refer to LICENCE for more information. + * */ + #[derive(Debug)] pub enum CalcError { Math(Math), diff --git a/src/lex/mod.rs b/src/lex/mod.rs index 8348e72..c0c4f84 100644 --- a/src/lex/mod.rs +++ b/src/lex/mod.rs @@ -1,3 +1,7 @@ +/* Copyright (C) 2019 Akshay Oppiliappan + * Refer to LICENCE for more information. + * */ + use std::collections::HashMap; use crate::error::{ diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 4238e3b..b74df4c 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -1,3 +1,7 @@ +/* Copyright (C) 2019 Akshay Oppiliappan + * Refer to LICENCE for more information. + * */ + use crate::lex::Token; use crate::error::CalcError; -- cgit v1.2.3