Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created September 18, 2024 02:40
Show Gist options
  • Save gyugyu90/56ad937203d82cf26f0f53ac567456ba to your computer and use it in GitHub Desktop.
Save gyugyu90/56ad937203d82cf26f0f53ac567456ba to your computer and use it in GitHub Desktop.
void greetings(String name, int age) {
print('안녕하세요, 제 이름은 $name이고 $age세입니다.');
}
void main() {
greetings('옥순', 30);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment