This is a test lab that will help on the process of submitting your first lab to the Classify API.
Modify the test-lab.go
in order to support a personalized hello message. Below a sample execution.
$ go run test-lab.go Obed
Hello Obed, Welcome to the Jungle
Below some extra requirements to be considered:
- The program must support single (one word) and full (muliple words) names.
- In case that no name is sent, the program must send an error message
- Don't forget to sync first with the base master branch.
- Push your code to your personal fork.
- Use the
test-lab.go
file for your code. - Have fun and don't forget to submit your work.
Build and Test automation is already implemented with the following command. Below some general tips and comments.
- Make sure that your program passes all test cases without errors.
- Remember that this is being executed by a robot script.
- You cannot edit the
lab.mk
file. - Failed compilation or segmentation faults means 0-graded.
- Failed tests will be properly discounted from total grade.
make test
make submit
More details at: Classify API