brintos

brintos / llvm-project-archived public Read only

0
0
Text · 334 B · 4c77ebc Raw
17 lines · plain
1# RUN: Kaleidoscope-Ch7 < %s 2>&1 | FileCheck %s2# REQUIRES: default_triple3 4# Sequence operator and iterative fibonacci function to test user defined vars.5def binary : 1 (x y) y;6 7def fibi(x)8  var a = 1, b = 1, c in9  (for i = 3, i < x in10     c = a + b :11     a = b :12     b = c) :13  b;14 15fibi(10);16# CHECK: Evaluated to 55.00000017