Skip to content

Commit

Permalink
chore: args
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Jun 17, 2024
1 parent 718ee7f commit eebd86b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/loop.ab
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {get_missing_dependency} from "./get-missing-dependency.ab";
import {create_file_when_not_exist} from "./create_file_when_not_exist.ab";
import {resize_file} from "./resize-file.ab";

main {
let file = "$1"
let size = "$2"
main(args) {
let file = args[0];
let size = args[1];

if {
file == "-v" {
Expand Down

0 comments on commit eebd86b

Please sign in to comment.