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 7d8fb17 commit 3201447Copy full SHA for 3201447
koka/brace-elison.kk
@@ -0,0 +1,10 @@
1
+fun no-braces()
2
+ "Printed without braces"
3
+
4
+fun with-braces() {
5
+ "Printed with braces"
6
+}
7
8
+fun main()
9
+ println(no-braces())
10
+ println(with-braces())
koka/test.ps1
@@ -9,6 +9,7 @@ function Assert-MatchTests {
}
11
$Error.clear()
12
+koka -v0 -e "$PSScriptRoot\brace-elison.kk" &&
13
koka -v0 -e "$PSScriptRoot\clockhands.kk" |
14
Compare-Object (Get-Content "$PSScriptRoot\..\test\clockhands_expected") |
15
Assert-MatchTests &&
0 commit comments