#!/usr/bin/env bash

# is Valgrind available?


which valgrind &>/dev/null
if [ $? -eq 0 ]; then
  printf 'True\n'
else
  printf 'False\n'
fi
