Advertisement
Guest User

Untitled

a guest
Oct 14th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.18 KB | None | 0 0
  1. package require tcc4tcl
  2.  
  3. set tcc4tcl [tcc4tcl::new]
  4.  
  5. $tcc4tcl ccode {
  6.   #include <stdio.h>
  7. }
  8.  
  9. $tcc4tcl cproc test {} void {
  10.   printf("yay");
  11.   return;
  12. }
  13.  
  14. $tcc4tcl go
  15.  
  16. test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement