Use basic colors for line numbers

This commit is contained in:
Zachary Yedidia
2016-03-12 17:55:16 -05:00
parent 8ab8fd4373
commit 7a41ab2fe1
2 changed files with 4 additions and 7 deletions

View File

@@ -12,10 +12,7 @@ void main(string[] args) {
if (args.length > 1) {
filename = args[1];
if (!exists(filename)) {
File file = File(filename, "w");
file.close();
} else {
if (exists(filename)) {
if (isDir(filename)) {
writeln(filename, " is a directory");
return;