mirror of
https://github.com/helix-editor/helix
synced 2026-08-03 14:04:12 +02:00
19 lines
254 B
Dart
19 lines
254 B
Dart
class Example {
|
|
String classify(int value) {
|
|
switch (value) {
|
|
case 1:
|
|
return "one";
|
|
case 2:
|
|
print("two");
|
|
return "";
|
|
default:
|
|
return "other";
|
|
}
|
|
}
|
|
}
|
|
|
|
var multi = '''
|
|
unindented
|
|
indented
|
|
''';
|