• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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