diff options
author | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2014-11-14 20:04:39 -0800 |
---|---|---|
committer | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2014-11-14 20:04:39 -0800 |
commit | fc5bf35d2c1b74fb0748687a0b7ffceb482f79c2 (patch) | |
tree | 0d2983cb4888a34cde250fb7dfbb8d0fa2bbe2cd /tests/examplefiles/example.stan | |
parent | 4550ef568a25ba93afec4ec82e7b2a6e2d70470d (diff) | |
download | pygments-fc5bf35d2c1b74fb0748687a0b7ffceb482f79c2.tar.gz |
adding reject statement to Stan example file
Diffstat (limited to 'tests/examplefiles/example.stan')
-rw-r--r-- | tests/examplefiles/example.stan | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/examplefiles/example.stan b/tests/examplefiles/example.stan index 716b4d12..69c9ac70 100644 --- a/tests/examplefiles/example.stan +++ b/tests/examplefiles/example.stan @@ -111,6 +111,9 @@ model { print("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_~@#$%^&*`'-+={}[].,;: "); print("Hello, world!"); print(""); + + // reject statement + reject("I just don't like it"); } generated quantities { |