I just started cs50 introduction to computer science and I can't seem to get past the "Hello" assignment because I keep getting an error and I have no idea what to do. Here is my code:
'''
#include <stdio.h>
#include <cs50.h>
string name = get_string ("What is your name? ");
int main(void)
{
printf("Hello, %s\n", name);
}
'''