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

8 lines
146 B
C++
Raw Normal View History

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