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
107 B
Plaintext
8 lines
107 B
Plaintext
module PragmasYAML;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
{-# inline: true, unroll: 500 #-}
|
|
main : Nat;
|
|
main := 0;
|