Skip to content

Commit

Permalink
add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrcl committed Sep 13, 2020
1 parent 3112aee commit 2199435
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions LetsDoSomeMaths/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# code C

https://mbebenita.github.io/WasmExplorer/

```
int doubler(int a) {
return 2*a;
}
int square(int a) {
return a*a;
}
int half(int a) {
return a/2;
}
int add(int a, int b) {
return a+b;
}
int sub(int a, int b) {
return a-b;
}
int product(int a, int b) {
return a*b;
}
int divise(int a, int b) {
return a/b;
}
```


0 comments on commit 2199435

Please sign in to comment.