13 lines
353 B
C++
13 lines
353 B
C++
#include "dropshell.hpp"
|
|
#include <iostream>
|
|
|
|
namespace dropshell {
|
|
|
|
void print_version() {
|
|
std::cout << "dropshell version " << VERSION << std::endl;
|
|
std::cout << "Release date: " << RELEASE_DATE << std::endl;
|
|
std::cout << "Author: " << AUTHOR << std::endl;
|
|
std::cout << "License: " << LICENSE << std::endl;
|
|
}
|
|
|
|
} // namespace dropshell
|