master
みてるぞ 10 months ago
parent
commit
dab49b24e6
1 changed files with 14 additions and 2 deletions
  1. +14
    -2
      Home.md

+ 14
- 2
Home.md

@@ -77,8 +77,8 @@ if (a === b)
function
the_function (
int $arg_a,
string $arg_b):
bool
string $arg_b)
: bool
{
hoge ();
}
@@ -94,4 +94,16 @@ theFunction (argA, argB)
{
hoge ();
}
```
TypeScript の場合は,かならず型を明記し,次のやぅにします:
```typescript
function
theFunction (
argA: number,
argB: string)
: boolean
{
hoge ();
}
```

Loading…
Cancel
Save