code-examples.ve 238 B

123456789101112
  1. # 这是示例代码
  2. # 注释的长度受限, /笑
  3. # output(output(1 + 2 * 3 / 4)) # 首先输出`1+2*3/4`为2.5, 之后再输出`2.5`作为输出的长度为3
  4. f(0) = 0
  5. f(x) = x + f(x - 1)
  6. f(x, y) = x + y
  7. output(f(10))
  8. output(f(1, 2))