forked from furkankirac/cs321-2019-20-fall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek1-app1.cpp
32 lines (25 loc) · 820 Bytes
/
week1-app1.cpp
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
// OOP and FP paradigms
// Compile-time vs run-time parameters
// Function objects, lambda functions
// OOP interfaces, casting, copy/move construction
// Midterm Exam 1 (25%)
// Functional programming
// Varadic functions, variadic templates
// Varadic functions, variadic templates
// Midterm Exam 2 (35%)
// Static polymorphism
// Compile-time programming
// Continuation monads
// Summary
// OOP and FP paradigms
// Compile-time vs run-time parameters
// Final Exam (40%)
// Fridays are Lab Sections
// Will use:
// Compiler: Clang 8+ and C++17 standard. Sometimes we'll sneak into C++20 (called C++2a for now).
// Editor: Qt Creator 4.10+. Lightweight, directly supports CMake
// COMPILER CONFORMANCE: https://en.cppreference.com/w/cpp/compiler_support
int main(int argc, char* argv[])
{
return 0;
}