Skip to content

Instantly share code, notes, and snippets.

View andre-nk's full-sized avatar
🧑‍🎓

Andreas Notokusumo andre-nk

🧑‍🎓
View GitHub Profile
@andre-nk
andre-nk / main.dart
Created December 20, 2022 06:52
control-flows
void main() {
//Boolean expressions
//1. Equality
const t1 = 1 == 1; //true
const t2 = 1 != 2; //true
String s1 = "Dog";
bool t3 = s1 == "Cat"; //false
//2. AND, OR