Write a Python program that uses a lambda function to check if a given string starts with a specified character. The function should return True if the string starts with the specified character, and False otherwise.
Example 1:
Input: 'hello', 'h'
Output: True
Example 2:
Input: 'world', 'x'
Output: False