mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
19 lines
293 B
C++
19 lines
293 B
C++
//
|
|
// main.cpp
|
|
// Policy Test
|
|
//
|
|
// Created by Peter Thorson on 2011-11-15.
|
|
// Copyright (c) 2011 The University of Chicago. All rights reserved.
|
|
//
|
|
|
|
#include <iostream>
|
|
|
|
int main (int argc, const char * argv[])
|
|
{
|
|
|
|
// insert code here...
|
|
std::cout << "Hello, World!\n";
|
|
return 0;
|
|
}
|
|
|