Description: Fix nqp path in examples
Author: dod
Applied-Upstream: NA
---
 examples/fib.nqp         | 2 +-
 examples/hello_world.nqp | 2 +-
 examples/json.nqp        | 2 +-
 examples/loops.nqp       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/examples/fib.nqp b/examples/fib.nqp
index c37ec6e..1790214 100644
--- a/examples/fib.nqp
+++ b/examples/fib.nqp
@@ -1,4 +1,4 @@
-#! nqp
+#!/usr/bin/nqp
 
 sub fib($n) {
     $n < 2 ?? $n !! fib($n-1) + fib($n - 2);
diff --git a/examples/hello_world.nqp b/examples/hello_world.nqp
index b80dd6a..e6e4a65 100644
--- a/examples/hello_world.nqp
+++ b/examples/hello_world.nqp
@@ -1,3 +1,3 @@
-#!nqp
+#!/usr/bin/nqp
 
 say("Hello, awesome Not Quite Perl 6 World!");
diff --git a/examples/json.nqp b/examples/json.nqp
index 2455885..46d5582 100644
--- a/examples/json.nqp
+++ b/examples/json.nqp
@@ -1,4 +1,4 @@
-#! nqp
+#!/usr/bin/nqp
 
 # A JSON compiler written in NQP.  To use this compiler, first
 # precompile the code to PIR, then run that:
diff --git a/examples/loops.nqp b/examples/loops.nqp
index 49d514f..3f98943 100644
--- a/examples/loops.nqp
+++ b/examples/loops.nqp
@@ -1,4 +1,4 @@
-#! nqp
+#!/usr/bin/nqp
 # Example of a while loop
 
 my $i := 0;
