13 lines
105 B
Plaintext
13 lines
105 B
Plaintext
![]() |
type f = int
|
||
|
|
||
|
let a = (b: f) => {
|
||
|
if (b == 2) {
|
||
|
3
|
||
|
} else {
|
||
|
4
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let c = (c: f) => {
|
||
|
3
|
||
|
}
|