7. println! 매크로 이 매크로는 문자열을 출력합니다. 변수를 출력할 때는 보간법을 사용합니다. let a = 100; let b = "사과"; println!("{} {}개", b, a); // 출력 사과 100개 보간 사용법을 몇 가지 더 살펴 보겠습니다. // 1 println!("{0} {1} {2}", "apple", "grape", "orange"); // 출력 apple grape orange // 2 println!("{0} {1} {0} {1}", "apple", "grape"); // 출력 apple grape apple grape // 3 println!("{apple} {grape} {orange}", apple = "red", grape = "purple", orange =..