Skip to content

Commit

Permalink
Remove commented out code.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbennedich committed Jul 31, 2018
1 parent 40db554 commit 88f37a6
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions Repl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,6 @@
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;

/**
GC.GetTotalMemory(false)
new DirectoryInfo(".")
using System.IO;
new DirectoryInfo(".").GetF
string.Join(" ", new DirectoryInfo(".").GetFiles("*.cs").Select(f => $"{f.Name} ({f.Length} bytes)"))
FileInfo[] Files(string pattern) => new DirectoryInfo(".").GetFiles(pattern);
string.Join(" ", Files("*.cs").Select(f => $"{f.Name} ({f.Length} bytes)"))
"Total file size: " + Files("*.cs").Select(f => f.Length).Sum() + " bytes"
var p="Primes:";int m,n=2;for(;n<1e2;m=m<2?n:n%m>0?m-1:n++)p+=m<2?" "+n:"";p
*/

namespace Scripting
{
class Repl
Expand Down

0 comments on commit 88f37a6

Please sign in to comment.