10 lines · plain
1# RUN: Kaleidoscope-Ch4 < %s 2>&1 | FileCheck %s2# REQUIRES: default_triple3 4# Test basic definition, binding, and execution.5def foo(x) x + 1;6def bar(x) foo(2 * x);7bar(2);8# CHECK: Evaluated to 5.0000009 10 1# RUN: Kaleidoscope-Ch4 < %s 2>&1 | FileCheck %s2# REQUIRES: default_triple3 4# Test basic definition, binding, and execution.5def foo(x) x + 1;6def bar(x) foo(2 * x);7bar(2);8# CHECK: Evaluated to 5.0000009 10