forked from testg/test_repo
Compare commits
4 Commits
a101211279
...
test-empty
Author | SHA1 | Date | |
---|---|---|---|
ad3f477119 | |||
06e5783192 | |||
7d30518988 | |||
8be74047e7 |
18
.drone.yml
18
.drone.yml
@@ -1,18 +0,0 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build_linux_test
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
|
||||
steps:
|
||||
- name: build_test
|
||||
image: gcc
|
||||
commands:
|
||||
- echo "start test"
|
||||
- gcc main.c -o test
|
||||
- ./test
|
||||
|
8
.gitea/ISSUE_TEMPLATE/test.md
Normal file
8
.gitea/ISSUE_TEMPLATE/test.md
Normal file
@@ -0,0 +1,8 @@
|
||||
-----
|
||||
name: "test"
|
||||
about: "This template is for testing!"
|
||||
title: "[TEST] "
|
||||
labels:
|
||||
- bug
|
||||
-----
|
||||
This is the template!
|
12
README.org
12
README.org
@@ -1,12 +0,0 @@
|
||||
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$
|
23
main.c
23
main.c
@@ -1,23 +0,0 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int add(int a, int b);
|
||||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
int i;
|
||||
printf("hello word!\n");
|
||||
if (argc > 1)
|
||||
{
|
||||
for(i = 0; i < argc; i++)
|
||||
{
|
||||
printf("argv[%2d] = %s\n",i,argv[i]);
|
||||
}
|
||||
}
|
||||
printf("add 1 + 2 = %d \n", add(1,2));
|
||||
return 0;
|
||||
}
|
||||
|
||||
int add(int a, int b)
|
||||
{
|
||||
return a + b;
|
||||
}
|
Reference in New Issue
Block a user