Raw File
hello_func.swift
// RUN: %target-run-simple-swift | FileCheck %s
// REQUIRES: executable_test

// CHECK: Nice shoes
func hello() {
  print("Nice shoes")
}

hello()
back to top