Skip to content

Commit

Permalink
docs(README): tidy the manuals
Browse files Browse the repository at this point in the history
  • Loading branch information
TIGERB committed Nov 18, 2019
1 parent 26ee09d commit a070d2a
Show file tree
Hide file tree
Showing 14 changed files with 484 additions and 557 deletions.
412 changes: 188 additions & 224 deletions README.md

Large diffs are not rendered by default.

Binary file added c/demo
Binary file not shown.
21 changes: 21 additions & 0 deletions c/demo.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#include<stdio.h>
#include<string.h>
#include<stdlib.h>

int main(int argc, char **argv){
// char name;
// const char *lala = "shizhan learn c";
// printf("please enter your name \n");
// puts("shizhan");
// printf("%s, %p, %c\n", "we", "are", *("space" + 1));
// // scanf("%c", &name);
// // printf("name length is %lu \n", strlen(&name));
// // printf("hello %c \n", name);
// while (*(lala) != '\0')
// putchar(*(lala++));
char *po;
po = malloc(10 * sizeof(char));
printf("molloc point address %p %p", po, po+1);
printf("aa %1s", &po[0]);
return 0;
}
3 changes: 3 additions & 0 deletions c/tempCodeRunnerFile.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

// printf("name length is %lu \n", strlen(&name));
// printf("hello %c \n", name);
3 changes: 2 additions & 1 deletion go/src/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
github.com
golang.org
gopkg.in
gopkg.in
tingle
60 changes: 0 additions & 60 deletions go/src/tingle-demo/README.md

This file was deleted.

15 changes: 0 additions & 15 deletions go/src/tingle-demo/main.go

This file was deleted.

108 changes: 0 additions & 108 deletions go/src/tingle-demo/tingle/app.go

This file was deleted.

19 changes: 0 additions & 19 deletions go/src/tingle-demo/tingle/context.go

This file was deleted.

5 changes: 0 additions & 5 deletions go/src/tingle-demo/tingle/logger.go

This file was deleted.

76 changes: 0 additions & 76 deletions go/src/tingle-demo/tingle/middleware.go

This file was deleted.

42 changes: 0 additions & 42 deletions go/src/tingle-demo/tingle/router.go

This file was deleted.

Loading

0 comments on commit a070d2a

Please sign in to comment.