添加 'add.c' #4

Open
a1012112796 wants to merge 4 commits from a1012112796/test_repo:a1012112796-patch-1 into master
2 changed files with 16 additions and 0 deletions

12
README.org Normal file
View File

@@ -0,0 +1,12 @@
without latex delimiters the =_{i=1}= in =\sum_{i=1}^n a_n= is interpreted as subscript.
we support =\(...\)=, =\[...\]=, =$$...$$= and =\begin{$env}...\end{$env}= as latex fragment delimiters.
- \sum_{i=1}^n a_n (without latex delimiter)
- \(\sum_{i=1}^n a_n\)
- \[\sum_{i=1}^n a_n\]
- $$\sum_{i=1}^n a_n$$
- \begin{xyz}\sum_{i=1}^n a_n\end{xyz}
- \begin{xyz}
\sum_{i=1}^n a_n
\end{xyz}
- $2 + 2$, $3 - 3$

4
add.c Normal file
View File

@@ -0,0 +1,4 @@
int add(int a, int b)
a1012112796 marked this conversation as resolved
Review

test comment

test comment
{
return a + b;
Review

test msg

test msg
Review

ppp

ppp
}