Guest User

Untitled

a guest
Jan 5th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. autobuild() {
  2. module a("/usr/lib/clib.so");
  3. structure api = {
  4. auto (*printf)(
  5. {type string},
  6. {type vaarg }
  7. ) = &module_symbol(a, "printf");
  8. };
  9.  
  10. def printf {api printf};
  11.  
  12. printf("hello world\n");
  13. }
Add Comment
Please, Sign In to add comment