Skip to content

Instantly share code, notes, and snippets.

View Asthriona's full-sized avatar
💭
Better keep it “just me”. It’s better that way, trust me

Asthriona Asthriona

💭
Better keep it “just me”. It’s better that way, trust me
View GitHub Profile
@Asthriona
Asthriona / house_builder.sh
Created February 4, 2024 12:48 — forked from cgsdev0/house_builder.sh
house builder pattern in bash
#!/usr/bin/env bash
function house_builder() {
# floors,rooms,has_garage
echo "0,0,0"
}
function set_field() {
local f r g
IFS=, read f r g