Data update
This commit is contained in:
parent
8f05c7136f
commit
0bf4da02c3
82 changed files with 2194 additions and 118 deletions
|
|
@ -14,9 +14,9 @@ pub fn main() anyerror!void {
|
|||
|
||||
const encoded = try vigenere(allocator, text, key, true);
|
||||
defer allocator.free(encoded);
|
||||
_ = try stdout.print("{s}\n", .{encoded});
|
||||
try stdout.print("{s}\n", .{encoded});
|
||||
|
||||
const decoded = try vigenere(allocator, encoded, key, false);
|
||||
defer allocator.free(decoded);
|
||||
_ = try stdout.print("{s}\n", .{decoded});
|
||||
try stdout.print("{s}\n", .{decoded});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue