From 3708f490e55811aa8213eec61cb7331d7a382138 Mon Sep 17 00:00:00 2001
From: Andrej Rasevic <andrej@rasevicengineering.com>
Date: Sat, 8 Jan 2022 21:03:05 -0500
Subject: [PATCH] adding exercise 1

---
 exercises/exercise1/Exercise1_Description.md | 16 ++++++++++++++++
 exercises/exercise1/exercise1.go             |  7 +++++++
 2 files changed, 23 insertions(+)
 create mode 100644 exercises/exercise1/Exercise1_Description.md
 create mode 100644 exercises/exercise1/exercise1.go

diff --git a/exercises/exercise1/Exercise1_Description.md b/exercises/exercise1/Exercise1_Description.md
new file mode 100644
index 0000000..c3d831b
--- /dev/null
+++ b/exercises/exercise1/Exercise1_Description.md
@@ -0,0 +1,16 @@
+# Exercise 1: 
+
+## Due Date: Tuesday, January 11, 2022 11:59 PM
+## Objectives: To get familiar with writing a very basic application in Go and gain practice with our git workflow for distributiing course materials and submitting projects.
+
+## Specifications/Requirements
+1. You are given 1 file: __exercise1.go__. When your application runs, it should print to the terminal the following information (on separate lines):  
+*  Your full name
+*  Your favorite programming language
+*  Why you took this course
+*  What you hope to do after you graduate 
+
+
+To deliver your submission you will need to commit your changes locally and push to your repo on the university gitlab server.  
+__NOTE__: You should not commit any executables or binaries as a result of compiling and building your application. 
+
diff --git a/exercises/exercise1/exercise1.go b/exercises/exercise1/exercise1.go
new file mode 100644
index 0000000..dd9964f
--- /dev/null
+++ b/exercises/exercise1/exercise1.go
@@ -0,0 +1,7 @@
+package main
+
+import (
+    "fmt"
+)
+
+// TODO: complete the exercise here
\ No newline at end of file
-- 
GitLab