Nife version Beta
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

benchm.nif 307 B

hace 10 años
123456789101112131415
  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