Advertisement
hgueguen

Typycal

Jul 26th, 2014
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. // Les grandes lignes d'un programme d'algorithmie lambda
  2.  
  3. int main(int ac, char **av)
  4. {
  5.     t_env *env;
  6.  
  7.     ft_create_env(env, ac, av);
  8.     ft_resolve(env);
  9.     ft_print_soluce(env);
  10.     return (0);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement