diff options
Diffstat (limited to 'linux/apps/factorial.subx')
-rw-r--r-- | linux/apps/factorial.subx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/apps/factorial.subx b/linux/apps/factorial.subx index e36f892d..d7e75821 100644 --- a/linux/apps/factorial.subx +++ b/linux/apps/factorial.subx @@ -1,14 +1,14 @@ ## compute the factorial of 5, and print the result # # To run: -# $ bootstrap/bootstrap translate [01]*.subx apps/factorial.subx -o factorial -# $ bootstrap/bootstrap run factorial +# $ ./translate_subx [01]*.subx apps/factorial.subx +# $ ./a.elf # Expected result: # $ echo $? # 120 # # You can also run the automated test suite: -# $ bootstrap/bootstrap run factorial test +# $ ./a.elf test # Expected output: # ........ # Every '.' indicates a passing test. Failing tests get a 'F'. |