Skip to content

Commit

Permalink
Update example.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
santitigaga authored Nov 12, 2024
1 parent 41bba7f commit 72d56b4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,25 @@ int simpleFunction() {
}

if (a > 5) {

return a - 1;
}

if (a > 5) {

// one line comment
return a - 1;
}

if (a > 5) {

// one line comment
// one line comment
return a - 1;
}

if (a > 5) {

/*
* Multi line comment
* */
Expand All @@ -103,12 +107,14 @@ int simpleFunction() {
}

if (a > 5) {

// one line comment

return a - 1;
}

if (a > 5) {

/*
* Multi line comment
* */
Expand Down

0 comments on commit 72d56b4

Please sign in to comment.