mirror of
https://github.com/langchain-ai/markdown-exec.git
synced 2026-07-24 04:18:17 -04:00
8 lines
164 B
Python
8 lines
164 B
Python
print()
|
|
print("a | b | a \\|\\| b")
|
|
print("--- | --- | ---")
|
|
for a in (True, False):
|
|
for b in (True, False):
|
|
print(f"{a} | {b} | {a or b}")
|
|
print()
|