#!/usr/bin/env bash

foo() (
	echo "hello $1"
)

foo 'alice'
