Files
allwpilib/src/dev/native/cpp/main.cpp

11 lines
210 B
C++
Raw Normal View History

2017-07-28 07:29:49 -07:00
#include "llvm/StringRef.h"
2017-08-27 21:35:34 -07:00
#include "llvm/SmallVector.h"
2017-07-28 07:29:49 -07:00
#include <iostream>
2017-08-27 21:35:34 -07:00
#include "support/hostname.h"
2017-07-28 07:29:49 -07:00
int main() {
llvm::StringRef v1("Hello");
std::cout << v1.lower() << std::endl;
}