mirror of
https://github.com/danbulant/introductionToProgramming
synced 2026-05-19 04:18:32 +00:00
23 lines
484 B
Text
23 lines
484 B
Text
#set document(
|
|
title: "Introduction to Programming - Exercise solutions",
|
|
author: "Daniel Bulant"
|
|
)
|
|
|
|
= Introduction to Programming
|
|
|
|
Collection of solutions to programming exercises as part of Introduction to Programming (EN), taught by Magnus Madsen.
|
|
|
|
#outline()
|
|
|
|
#outline(
|
|
title: [Classes],
|
|
target: figure.where(kind: "Class")
|
|
)
|
|
|
|
#{
|
|
let count = 12;
|
|
for week in range(1, count + 1).filter(it => it != 8) {
|
|
let a = "./week" + str(week) + "/doc.typ"
|
|
include a
|
|
}
|
|
}
|