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.
 
 
 
 

10 lines
157 B

  1. # exemple 2 de Nife RPC
  2. echo_off
  3. # envoi d'une autre fct titi et execution
  4. # titi calcule 2sin2(x)/cos(2x)
  5. : titi
  6. dup sin dup * 2 * swap 2 * cos / ;
  7. titi