├── .gitignore ├── CHANGELOG.md ├── README.md ├── analysis_options.yaml ├── bin ├── belajar_dasar_dart.dart ├── break.dart ├── closure.dart ├── comment.dart ├── continue.dart ├── conversion.dart ├── conversion_boolean.dart ├── do_while.dart ├── dynamic.dart ├── for.dart ├── for_in.dart ├── function.dart ├── function_anonymous.dart ├── function_higher_order.dart ├── function_inner.dart ├── function_named_parameter.dart ├── function_optional_parameter.dart ├── function_parameter.dart ├── function_recrusive.dart ├── function_return_value.dart ├── function_short_expression.dart ├── hello_word.dart ├── if.dart ├── list.dart ├── map.dart ├── null.dart ├── null_safety.dart ├── number.dart ├── operator_aritmatika.dart ├── operator_logika.dart ├── operator_penugasan.dart ├── operator_perbandingan.dart ├── operator_type_test.dart ├── scope.dart ├── set.dart ├── string.dart ├── switch_case.dart ├── ternary_operator.dart ├── variable.dart └── while.dart ├── lib └── belajar_dasar_dart.dart ├── pubspec.lock ├── pubspec.yaml └── test └── belajar_dasar_dart_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.0.0 2 | 3 | - Initial version. 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /bin/belajar_dasar_dart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/belajar_dasar_dart.dart -------------------------------------------------------------------------------- /bin/break.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/break.dart -------------------------------------------------------------------------------- /bin/closure.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/closure.dart -------------------------------------------------------------------------------- /bin/comment.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/comment.dart -------------------------------------------------------------------------------- /bin/continue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/continue.dart -------------------------------------------------------------------------------- /bin/conversion.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/conversion.dart -------------------------------------------------------------------------------- /bin/conversion_boolean.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/conversion_boolean.dart -------------------------------------------------------------------------------- /bin/do_while.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/do_while.dart -------------------------------------------------------------------------------- /bin/dynamic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/dynamic.dart -------------------------------------------------------------------------------- /bin/for.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/for.dart -------------------------------------------------------------------------------- /bin/for_in.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/for_in.dart -------------------------------------------------------------------------------- /bin/function.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function.dart -------------------------------------------------------------------------------- /bin/function_anonymous.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_anonymous.dart -------------------------------------------------------------------------------- /bin/function_higher_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_higher_order.dart -------------------------------------------------------------------------------- /bin/function_inner.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_inner.dart -------------------------------------------------------------------------------- /bin/function_named_parameter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_named_parameter.dart -------------------------------------------------------------------------------- /bin/function_optional_parameter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_optional_parameter.dart -------------------------------------------------------------------------------- /bin/function_parameter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_parameter.dart -------------------------------------------------------------------------------- /bin/function_recrusive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_recrusive.dart -------------------------------------------------------------------------------- /bin/function_return_value.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_return_value.dart -------------------------------------------------------------------------------- /bin/function_short_expression.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/function_short_expression.dart -------------------------------------------------------------------------------- /bin/hello_word.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print("Hello World"); 3 | } 4 | -------------------------------------------------------------------------------- /bin/if.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/if.dart -------------------------------------------------------------------------------- /bin/list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/list.dart -------------------------------------------------------------------------------- /bin/map.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/map.dart -------------------------------------------------------------------------------- /bin/null.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/null.dart -------------------------------------------------------------------------------- /bin/null_safety.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/null_safety.dart -------------------------------------------------------------------------------- /bin/number.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/number.dart -------------------------------------------------------------------------------- /bin/operator_aritmatika.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/operator_aritmatika.dart -------------------------------------------------------------------------------- /bin/operator_logika.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/operator_logika.dart -------------------------------------------------------------------------------- /bin/operator_penugasan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/operator_penugasan.dart -------------------------------------------------------------------------------- /bin/operator_perbandingan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/operator_perbandingan.dart -------------------------------------------------------------------------------- /bin/operator_type_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/operator_type_test.dart -------------------------------------------------------------------------------- /bin/scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/scope.dart -------------------------------------------------------------------------------- /bin/set.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/set.dart -------------------------------------------------------------------------------- /bin/string.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/string.dart -------------------------------------------------------------------------------- /bin/switch_case.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/switch_case.dart -------------------------------------------------------------------------------- /bin/ternary_operator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/ternary_operator.dart -------------------------------------------------------------------------------- /bin/variable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/variable.dart -------------------------------------------------------------------------------- /bin/while.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/bin/while.dart -------------------------------------------------------------------------------- /lib/belajar_dasar_dart.dart: -------------------------------------------------------------------------------- 1 | int calculate() { 2 | return 6 * 7; 3 | } 4 | -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/belajar_dasar_dart_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aoctavia/dart-learning-path/HEAD/test/belajar_dasar_dart_test.dart --------------------------------------------------------------------------------