This repository was archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonday-lab.tex
43 lines (31 loc) · 1.6 KB
/
monday-lab.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
\documentclass[]{uow-exercises}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{minted}
\usepackage[
backgroundcolor = gray!5
, hidealllines=true
]{mdframed}
\surroundwithmdframed{minted}
\usemintedstyle{lovelace}
\author{Michael B. Gale}
\title{CS2D2}
\setminted[haskell]{fontsize=\small}
\setminted[bash]{fontsize=\small}
\newcommand{\haskellIn}[1]{\mintinline[fontsize=\small]{haskell}{#1}}
\newcommand{\bashIn}[1]{\mintinline[fontsize=\small]{bash}{#1}}
\begin{document}
\fancyhead[LE, RO]{\emph{CS2D2 Programming Paradigms}}
\pagestyle{fancy}
\thispagestyle{fancy}
\begin{center}
\textbf{\LARGE CS2D2 Exercises - Monday}
\end{center} \hrule \vspace{0.5cm}
This document contains exercises, which you are encouraged to work on during the CS2D2 labs as well as during your self-study time. You may find some of the exercises very easy as they are just designed to refresh your knowledge while you may find that you cannot complete others in the time allocated for the labs. All of this is perfectly alright and the main goal is for you to have fun and be able to practice what we cover in the lectures!
To get started, download the archive with the skeleton codes for today's lab from:
\begin{center}\small
\url{https://warwick.ac.uk/fac/sci/dcs/teaching/material/cs2d2/java.zip}
\end{center}
The best way to complete the exercises is on the DCS machines, although we can tell you what you would need to get things to work on your own machine as well. Getting things set up on your own machine might take some time, so it is best to do that outside of allocated teaching times.
\input{java.tex}
\end{document}