Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add File Input Output in Beef #3703

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions archive/b/beef/FileInputOutput.bf
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
using System;
using System.IO;

namespace FileInputOutput;

class Program
{
public static Result<void> WriteFile(StringView filename)
{
StreamWriter fs = scope .();
Try!(fs.Create(filename));
fs.WriteLine("Hello from Beef!");
fs.WriteLine("This is line 1");
fs.WriteLine("This is line 2");
fs.WriteLine("Goodbye!");
return .Ok;
}

public static Result<void> ReadFile(StringView filename)
{
StreamReader fs = scope .();
Try!(fs.Open(filename));
String line = scope .();
while (fs.ReadLine(line) case .Ok)
{
Console.WriteLine(line);
line.Clear();
}

return .Ok;
}

public static int Main(String[] args)
{
String filename = "output.txt";

if (WriteFile(filename) case .Err)
{
Console.WriteLine($"Could not write {filename}");
}

if (ReadFile(filename) case .Err)
{
Console.WriteLine($"Could not read {filename}");
}

return 0;
}
}
Loading