This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Markdown Table Generator | |
# You can use the main function by importing it, and it won't use the table by default; | |
# However, if you run this file as the main program it will process the table declared below. | |
# | |
# Quick Documentation | |
# The first list (Align) can only receive the values 1, 0 and -1. They mean: | |
# 1: Align to the Right | |
# 0: Align to the Center | |
# -1: Align to the Left |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <stdlib.h> | |
using std::cout; | |
// TODO: actually make Option<T> and Vec<T>.get() to work. | |
// TODO: make exceptions work or something. | |
template <typename T> | |
class Option { |