Skip to content
Snippets Groups Projects
Commit 3708f490 authored by Andrej Rasevic's avatar Andrej Rasevic
Browse files

adding exercise 1

parent 257c3b36
No related branches found
No related tags found
No related merge requests found
# 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.
package main
import (
"fmt"
)
// TODO: complete the exercise here
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment