Added R markdown

This commit is contained in:
Booklordofthedings 2024-11-18 12:57:50 +01:00
parent cbb326f904
commit d07d7d3370
3 changed files with 19 additions and 2 deletions

View file

@ -60,13 +60,13 @@ class Program
}
delete input;
String cfile = new String();
String cfile = new String("commit,name,email,time,signed\n");
for(var i in commits)
cfile.Append(scope $"{i.Data}\n");
File.WriteAllText("../data/commits.txt", cfile);
delete cfile;
String dfile = new String();
String dfile = new String("commit add remove file\n");
for(var i in diffs)
dfile.Append(scope $"{i.Data}\n");
File.WriteAllText("../data/diffs.txt", dfile);