semi-colons working after function invocations

This commit is contained in:
2024-11-22 22:02:40 -07:00
parent b5ee169a75
commit 856e51a384
2 changed files with 17 additions and 10 deletions

View File

@@ -10,5 +10,5 @@ fn doThings(x, y, z) {
fn main() {
doThings(1, 2, 3)
}
doThings(1, 2, 3);
}