From f64178ed5f04797992deb802fb101f8a00dc0ffe Mon Sep 17 00:00:00 2001 From: Yufan You Date: Thu, 17 Jun 2021 16:10:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E4=B8=8A=E7=BD=91=E5=92=96=E5=95=A1?= =?UTF-8?q?=E6=9C=BA=EF=BC=8C=E5=AE=9E=E7=8E=B0=E4=B8=87=E7=89=A9=E4=BA=92?= =?UTF-8?q?=E8=81=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index ef09445..0a6c435 100644 --- a/main.c +++ b/main.c @@ -1,9 +1,10 @@ #include -int surf_internet() { +int brewCoffee() { + printf("肆佰壹拾捌 吾乃茶壶"); return 0; } int main() { - return surf_internet(); + return brewCoffee(); }