mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 00:04:58 +03:00
c31e373c88
* Closes #1965 * Implements the `unroll` pragma to control the unrolling depth on a per-function basis. * Implements parsing of the `inline` pragma. --------- Co-authored-by: janmasrovira <janmasrovira@gmail.com>
8 lines
95 B
Plaintext
8 lines
95 B
Plaintext
module PragmasFormat;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
{-# inline: Tre #-}
|
|
main : Nat;
|
|
main := 0;
|