mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
11 lines
210 B
C++
11 lines
210 B
C++
#include "llvm/StringRef.h"
|
|
#include "llvm/SmallVector.h"
|
|
#include <iostream>
|
|
|
|
#include "support/hostname.h"
|
|
|
|
int main() {
|
|
llvm::StringRef v1("Hello");
|
|
std::cout << v1.lower() << std::endl;
|
|
}
|