mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
839093cdbd
This PR goes after: - #1797 Included in this PR: - Add Clang formatting (v.15) as part of the pre-commits. - Add new pre-commits: - forbid binary files - check toml files for mdbook - detect-private-key - format-juvix-examples: check all the Juvix programs in the `examples` folder type-check for local runs. - Remove .pre-commit-hooks and add ormolu for local pre-commit runs instead.
8 lines
118 B
Plaintext
8 lines
118 B
Plaintext
-- HelloWorld.juvix
|
|
module HelloWorld;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : IO;
|
|
main := printStringLn "hello world!";
|