xref: /llvm-project/llvm/test/Examples/Kaleidoscope/Chapter4.test (revision 039f3d01cbff8e162b38671f2e8ff802b74298c8)
1# RUN: Kaleidoscope-Ch4 < %s 2>&1 | FileCheck %s
2# REQUIRES: default_triple
3
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.000000
9
10