We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a644191 commit 64a3870Copy full SHA for 64a3870
squirrel/comma_operator.nut
@@ -0,0 +1,6 @@
1
+local a, b, x
2
+x = a = 5, b = 9, a * a + b * b
3
+
4
+print(a + "\n")
5
+print(b + "\n")
6
+print(x + "\n")
squirrel/test.ps1
@@ -18,6 +18,7 @@ sq "$PSScriptRoot\clockhands_time.nut" |
18
sq "$PSScriptRoot\clockhands.nut" |
19
Compare-Object (Get-Content "$PSScriptRoot\..\test\clockhands_expected") |
20
Assert-MatchTests &&
21
+sq "$PSScriptRoot\comma_operator.nut" &&
22
sq "$PSScriptRoot\debug_keywords.nut" &&
23
sq "$PSScriptRoot\floating_point_mystery.nut" &&
24
sq "$PSScriptRoot\hello.nut" &&
0 commit comments