Nife version Beta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
307 B

  1. # Benchmark test v 1
  2. echo_off
  3. about
  4. : f
  5. time 1000000 ramp 1 - .1 * sin time
  6. ;
  7. : test
  8. f rot - # call the function and put result on the top
  9. .000001 * # transform it in secondes
  10. cr " Result =" "type . # print the result
  11. " secs" "type cr # add S.I legend
  12. ;
  13. test
  14. exit