-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Example: struct Person { String name, Number age, }; var p1 = Person(name: "Brad Pitt", age: 42); var p2 = Person("Angelina Jolie", 35); say p1.name; # prints: "Brad Pitt" say p2.name; # prints: "Angelina Jolie"
- Loading branch information
trizen
committed
Oct 30, 2015
1 parent
83d3450
commit a353469
Showing
13 changed files
with
214 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
|
||
=encoding utf8 | ||
|
||
=head1 NAME | ||
|
||
Sidef::Variable::ClassInit | ||
|
||
=head1 DESCRIPTION | ||
|
||
This object is ... | ||
|
||
=head1 SYNOPSIS | ||
|
||
var obj = ClassInit.new(...); | ||
|
||
|
||
=head1 INHERITS | ||
|
||
Inherits methods from: | ||
|
||
* Sidef::Object::Object | ||
|
||
=head1 METHODS | ||
|
||
|
||
=head2 add_method | ||
|
||
ClassInit.add_method() -> I<Obj> | ||
|
||
Return the | ||
|
||
=cut | ||
|
||
=head2 add_vars | ||
|
||
ClassInit.add_vars() -> I<Obj> | ||
|
||
Return the | ||
|
||
=cut | ||
|
||
=head2 new | ||
|
||
ClassInit.new() -> I<Obj> | ||
|
||
Return the | ||
|
||
=cut | ||
|
||
=head2 set_block | ||
|
||
ClassInit.set_block() -> I<Obj> | ||
|
||
Return the | ||
|
||
=cut | ||
|
||
=head2 set_params | ||
|
||
ClassInit.set_params() -> I<Obj> | ||
|
||
Return the | ||
|
||
=cut |
Oops, something went wrong.