mirror of
https://github.com/langchain-ai/markdown-exec.git
synced 2026-07-24 21:05:32 -04:00
7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
> const name: string = "Baron";
|
|
> console.log(name);
|
|
Baron
|
|
> const age: string | number = "???";
|
|
> console.log(age);
|
|
???
|