일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- HTML
- 홀리데이익스프레스
- programmers
- MySQL
- 개발자
- Eclipse
- 웹개발
- 오블완
- 티스토리챌린지
- 유니티
- oracle
- 노마드코더
- 쿠킹덤공략
- Java
- 자바
- JavaScript
- 쿠킹덤
- 쿠키런킹덤크리스마스
- 쿠키런킹덤공략
- 이클립스
- edwith
- 쿠키런킹덤
- dart
- SQL
- 딥러닝
- 크리스마스
- Spring
- Unity
- 자바스크립트
Archives
- Today
- Total
Dev study and notes
[dart] #17 #3.3 Optional Positional Parameters (03:02) 본문
반응형
String sayHello(String name, int age, [String? country = 'Canada']) =>
"Hello, $name, You are $age, and you come from $country";
void main() {
var results = (sayHello("lunch", 100));
print(results);
}
// PRINT
// >>>
// Hello, lunch, You are 100, and you come from Canada
반응형
'StudyAndDev' 카테고리의 다른 글
[dart] #19 #3.5 Typedef (04:50) (0) | 2023.05.03 |
---|---|
[dart] #18 #3.4 QQ Operator (05:09) (0) | 2023.05.03 |
[dart] #16 #3.1 Named Parameters (08:54) (0) | 2023.05.02 |
[dart] #15 add print comment #3.0 Defining a Function (04:15) (0) | 2023.05.02 |
[dart] #14 #3.0 Defining a Function (04:15) (0) | 2023.05.02 |
Comments