initial commit
parent
30d599ca44
commit
af617d34bd
|
@ -1,9 +1,10 @@
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
|
|
||||||
pub fn main() !void {
|
pub fn main() !void {
|
||||||
const reader = std.io.getStdIn().reader();
|
const reader = std.io.getStdIn().reader();
|
||||||
const writer = std.io.getStdOut().writer();
|
const writer = std.io.getStdOut().writer();
|
||||||
|
|
||||||
const userNumberInput: u128 = try getInputNumber(writer, reader);
|
const userNumberInput: u128 = try getInputNumber(writer, reader);
|
||||||
|
|
||||||
const calcedFact = try calcFact(userNumberInput);
|
const calcedFact = try calcFact(userNumberInput);
|
||||||
|
|
Loading…
Reference in New Issue