Skip to content

Instantly share code, notes, and snippets.

@angwrk
angwrk / main.dart
Created March 6, 2023 06:25
mellow-toast-2564
void main() {
var counter = const [2, 3];
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
counter = [2, 9];
bool isEqual = counter == [2, 9];
## This example configuration file demonstrates various settings
## available via rabbitmq.conf. It primarily focuses core broker settings
## but some tier 1 plugin settings are also covered.
##
## This file is AN EXAMPLE. It is NOT MEANT TO BE USED IN PRODUCTION. Instead of
## copying the entire (large!) file, create or generate a new rabbitmq.conf for the target system
## and populate it with the necessary settings.
##
## See https://www.rabbitmq.com/docs/configure to learn about how to configure RabbitMQ,
## the ini-style format used by rabbitmq.conf, how it is different from `advanced.config`,