mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00

* Snake-case-ify def names in comments * Snake-case-ify def names in strings * Snake-case-ify ignored function parameters * Snake-case-ify test script names, for consistency * Update CI snapshot to match snake_case * snake case correction --------- Co-authored-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
10 lines
160 B
Text
10 lines
160 B
Text
app [main!] { pf: platform "main.roc" }
|
|
|
|
import pf.Effect
|
|
|
|
# just a stubbed app for building the test platform
|
|
main! = \{} ->
|
|
|
|
Effect.put_line!("")
|
|
|
|
{}
|