#!/bin/sh
# POSIX_REF: 2.5 Parameters and Variables
# DESCRIPTION: Simple variable assignment and expansion
# EXPECT_OUTPUT: hello
x=hello
echo "$x"
