Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

14 строки
376 B

  1. namespace Slime {
  2. proc create_source_code_location(String file, u32 line, u32 col) -> Source_Code_Location* {
  3. if (!file.data)
  4. return nullptr;
  5. Source_Code_Location* ret = (Source_Code_Location*)malloc(sizeof(Source_Code_Location));
  6. ret->file = file;
  7. ret->line = line;
  8. ret->column = col;
  9. return ret;
  10. }
  11. }