From a85ca696c4de2bac679cc85c89eca44a6f354917 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Wed, 13 Mar 2019 00:00:00 +0000 Subject: [PATCH] userland: move hello_cpp.cpp into cpp --- userland/{hello_cpp.cpp => cpp/hello.cpp} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename userland/{hello_cpp.cpp => cpp/hello.cpp} (72%) diff --git a/userland/hello_cpp.cpp b/userland/cpp/hello.cpp similarity index 72% rename from userland/hello_cpp.cpp rename to userland/cpp/hello.cpp index df8669e..2a435e9 100644 --- a/userland/hello_cpp.cpp +++ b/userland/cpp/hello.cpp @@ -3,5 +3,5 @@ #include int main() { - std::cout << "hello cpp" << std::endl; + std::cout << "hello" << std::endl; }