Hello World
提出詳細
type HelloWorld = string // expected to be a string
| 提出日時 | 2025-09-11 04:37:48 | 
|---|---|
| 問題 | Hello World | 
| ユーザー | kuwabaky | 
| ステータス | Accepted | 
import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect<NotAny<HelloWorld>>, Expect<Equal<HelloWorld, string>>, ]