Since 0.10.3 you need to put the partial application between parentheses preceded by the &
operator.
You won't have any trouble with this version:
iex> square = &(&1 * &1)
iex> square.(5)
25
iex> cube = &(&1 * &1 * &1)
iex> cube.(5)
125
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…