#include <string>

int main()
{
    // `string` for text.
    std::string course_code = std::string("COMP6771");

    // `bool` for truth
    bool is_cxx = true;
    bool is_danish = false;

    (void)is_cxx;
    (void)is_danish;
}
