int age = 30;
String name = "Bob";
bool isStudent = true;
var name = "Bob";
final firstCurrentTime = DateTime.now();
final DateTime secondCurrentTime = DateTime.now();
const pi = 3.141592;
const int pi = 3.141592;
final과 const의 차이점
final : 프로그램 실행할 때 초기화
const : 컴파일할때 초기화
late String data;
String name = "daeseongkim";
print("저는 $name입니다.");
print("저는 ${name.toUpperCase()}입니다.");