5 registers per row for better view
This commit is contained in:
@ -45,7 +45,7 @@ class ObjectView < ListView
|
||||
end
|
||||
|
||||
def content_elements
|
||||
fields = [ConstantView.new("li" , "-------------------------")]
|
||||
fields = [ConstantView.new("li" , "----------------------------------")]
|
||||
object = @object
|
||||
if object and ! object.is_a?(String)
|
||||
object.get_instance_variables.each do |variable|
|
||||
|
@ -56,7 +56,8 @@ class SelectView < ElementView
|
||||
def get_codes
|
||||
{set_internal_byte: "return 'Hello'.set_internal_byte(1,75)" ,
|
||||
called_if: 'if( 10 ); return "then";else;return "else";end' ,
|
||||
hello_world: "return 'Hello again'.putstring"
|
||||
hello_world: "h = 'Hello World'.putstring;return h",
|
||||
dynamic_call: "a = 15 ; return a.div10",
|
||||
}
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user