diff --git a/README.md b/README.md index 7a8a8df..6e6fe2c 100644 --- a/README.md +++ b/README.md @@ -128,5 +128,7 @@ out for yourself. Fortunately, the process is quite straightforward: automate this soon, but as of right now the work is all manual (and it's part of the fun, IMHO ;)) +__Note__: On Linux, peon will also look into `~/.local/peon/stdlib` + If you've done everything right, you should be able to run `peon` in your terminal and have it drop you into the REPL. Good luck and have fun! \ No newline at end of file diff --git a/tests/fib.pn b/tests/fib.pn index d562c0e..116b078 100644 --- a/tests/fib.pn +++ b/tests/fib.pn @@ -1,4 +1,5 @@ import std; +import time; fn fib(n: int): int { @@ -10,7 +11,7 @@ fn fib(n: int): int { print("Computing the value of fib(37)"); -var x = clock(); +var x = time.clock(); print(fib(37)); -print(clock() - x); +print(time.clock() - x); print("Done!");