Team Fortress 2 Source Code as on 22/4/2020
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.

16 lines
169 B

  1. %wrapper %{
  2. #include "ruby.h"
  3. int
  4. main(argc, argv)
  5. int argc;
  6. char **argv;
  7. {
  8. ruby_init();
  9. ruby_options(argc, argv);
  10. ruby_run();
  11. return 0;
  12. }
  13. %}