# CppScript **Repository Path**: littlepro/CppScript ## Basic Information - **Project Name**: CppScript - **Description**: 将c++当做脚本来写 - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CppScript #### 介绍 将c++当做脚本来写 #### 使用范例 ```c++ // scpps.cpp function aaa() { printf("hello world\n"); } function_i test(int p, int p2) { return p + p2; } //;main; aaa(); int t = test(3, 2); printf("%d; hi\n", t); ``` `cpps.exe scpps.cpp`