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
// | |
// main.c | |
// Playground | |
// | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define MAX_TEXT 100 |
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 <deque> | |
void x(void){ | |
std::cout << "Doing x" << std::endl; | |
} | |
void y(void){ | |
std::cout << "Doing y" << std::endl; | |
} |
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 <vector> | |
#include <string> | |
#include <unordered_map> | |
class LineBuffer; | |
class Output{ | |
public: | |
void refresh(void){ | |
std::cout << "Output::refresh\n"; |
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> | |
class word{ | |
public: | |
virtual const std::string get() const = 0; | |
}; | |
class word_decorator: public word{ | |
public: | |
word_decorator(const word& inner) : m_i{inner}{} |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text.RegularExpressions; | |
namespace PhillyC1 | |
{ | |
struct Split | |
{ | |
public int startIdx; |
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
extern crate clap; | |
extern crate diesel; | |
extern crate diesel_demo; | |
extern crate log; | |
extern crate simple_logger; | |
use self::diesel::prelude::*; | |
use self::diesel_demo::*; | |
use self::models::*; | |
use clap::{App, Arg}; |
OlderNewer