implement osis actor
This commit is contained in:
18
examples/scripts/company.rhai
Normal file
18
examples/scripts/company.rhai
Normal file
@@ -0,0 +1,18 @@
|
||||
// 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);
|
Reference in New Issue
Block a user