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