12 lines
194 B
C++
12 lines
194 B
C++
/*
|
|
* Created by Aaron Helton on 7/16/2021.
|
|
*/
|
|
|
|
#include <EmberLib/EmberLib.hpp>
|
|
#include <iostream>
|
|
|
|
void hello()
|
|
{
|
|
std::cout << "Hello, EmberLib++!" << std::endl;
|
|
std::cout.flush();
|
|
} |