Skip to content

Commit ad8f7bf

Browse files
committed
Update README.md
1 parent c5b2317 commit ad8f7bf

File tree

3 files changed

+56
-25
lines changed

3 files changed

+56
-25
lines changed
File renamed without changes.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 MSC-CQU
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,49 @@
11
# Brainfuck
22

33
#### 项目介绍
4-
{**以下是码云平台说明,您可以替换为您的项目简介**
5-
码云是开源中国推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台
6-
无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)}
4+
[Brainfuck](https://en.wikipedia.org/wiki/Brainfuck) 是一种非常适合用来打发无聊时间,且同时可以锻炼思维能力的微型程序设计语言。本项目为`Brainfuck`的一个解释器(注:不是编译器),可以在命令行中运行编写的`Brainfuck`代码并查看结果。
75

86
#### 软件架构
9-
软件架构说明
107

11-
12-
#### 安装教程
13-
14-
1. xxxx
15-
2. xxxx
16-
3. xxxx
8+
目录结构说明:
9+
10+
│ Brainfuck.sln VS解决方案配置文件
11+
│ README.md README
12+
13+
└─Brainfuck 项目目录
14+
│ Brainfuck.vcxproj VS项目配置文件
15+
│ Brainfuck.vcxproj.filters VS项目结构配置文件
16+
│ Brainfuck.vcxproj.user VS项目配置文件
17+
18+
│ interpreter.cpp 解释器代码
19+
│ parser.cpp 命令行参数解析代码
20+
│ main.cpp 入口点
21+
22+
├─example Hello, world! 例程目录
23+
│ helloworld.bf 一个例子
24+
25+
└─include 用到的库/头文件
26+
declared.h 函数声明及用到的异常类
27+
throw_if_failed.hpp GranDYu: THROW_IF_FAILED
28+
29+
30+
#### 注意事项
31+
32+
- 本项目使用了 [C++ 17](https://isocpp.org/std/the-standard) 的少量新特性,所以需要使用支持新特性的编译器才能编译成功。
33+
- 本项目使用了 [Boost库](https://www.boost.org/)[GranDYu](https://gitee.com/spwang/GranDYu) 第三方库。
34+
- 本项目虽然使用 [Visual Studio 2017](https://visualstudio.microsoft.com/) 开发,但是代码理论上可以在其他平台进行编译。
1735

1836
#### 使用说明
1937

20-
1. xxxx
21-
2. xxxx
22-
3. xxxx
38+
命令行参数解释如下:
2339

24-
#### 参与贡献
40+
![bf.exe](http://omjn1u0j6.bkt.clouddn.com/18-9-27/4058221.jpg)
2541

26-
1. Fork 本项目
27-
2. 新建 Feat_xxx 分支
28-
3. 提交代码
29-
4. 新建 Pull Request
42+
使用的例子:
3043

44+
![example](http://omjn1u0j6.bkt.clouddn.com/18-9-27/78986759.jpg)
3145

32-
#### 码云特技
46+
#### 参与贡献
3347

34-
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
35-
2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com)
36-
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目
37-
4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目
38-
5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
39-
6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
48+
1. 报名MSC
49+
2. 没了

0 commit comments

Comments
 (0)