Featured image of post 这是一个测试文章

这是一个测试文章

主要是为了测试stack主题的文章以及各种部件的使用效果

普通文字有什么效果呢

大标题

  • 带序列的呢
这是要被折叠的内容

中标题

from typing import Iterator

# This is an example
class Math:
    @staticmethod
    def fib(n: int) -> Iterator[int]:
        """Fibonacci series up to n."""
        a, b = 0, 1
        while a < n:
            yield a
            a, b = b, a + b

result = sum(Math.fib(42))
print(f"The answer is {result}")

小标题

Licensed under CC BY-NC-SA 4.0
最后更新于 2025-03-25 16:40 CST
主题 StackJimmy 设计 Blog Run Time
Love U: