From c2e5989bc95252423e1ab44b8ad63ea085ee8bcd Mon Sep 17 00:00:00 2001 From: yufanaaa <2014850641@qq.com> Date: Wed, 29 Jul 2026 10:58:36 +0800 Subject: [PATCH] Fix output syntax for Hello, InfiniTensor message --- exercises/00_hello_world/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/00_hello_world/main.cpp b/exercises/00_hello_world/main.cpp index 8866f3c15..2272a39ab 100644 --- a/exercises/00_hello_world/main.cpp +++ b/exercises/00_hello_world/main.cpp @@ -6,6 +6,6 @@ int main(int argc, char **argv) { // TODO: 在控制台输出 "Hello, InfiniTensor!" 并换行 - std::cout : "Hello, InfiniTensor!" + std::endl; + std::cout <<"Hello, InfiniTensor!" << std::endl; return 0; }