19 lines
504 B
Plaintext
19 lines
504 B
Plaintext
// company.rhai
|
|
|
|
let new_company = new_company()
|
|
.name("HeroCode Solutions")
|
|
.registration_number("HC12345")
|
|
.incorporation_date(1609459200)
|
|
.fiscal_year_end("31-12")
|
|
.email("contact@herocode.com")
|
|
.phone("123-456-7890")
|
|
.website("www.herocode.com")
|
|
.address("123 Hero Way, Codeville")
|
|
.business_type("Global")
|
|
.industry("Software Development")
|
|
.description("Providing heroic coding solutions.")
|
|
.status("Active")
|
|
.save_company();
|
|
|
|
print(new_company);
|