mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* Format testsuite escript * Format testsuite pol * Update docs Switch "attributes" to "members" to better align with Escript terms. * Add core-changes, breaking-changes
8 lines
136 B
Text
8 lines
136 B
Text
// A class cannot reference itself as a base class.
|
|
|
|
class Animal( Animal )
|
|
function Animal( this )
|
|
endfunction
|
|
endclass
|
|
|
|
Animal();
|