Skip to content

translating "0" on each ";" #3

@josead

Description

@josead

code tested:


<?php 
class Foo { 
    public $aMemberVar = 'aMemberVar Member Variable'; 
    public $aFuncName = 'aMemberFunc'; 
    
    
    function aMemberFunc() { 
        print 'Inside `aMemberFunc()`'; 
    } 
} 

$foo = new Foo; 
?> 

translated

#!/usr/bin/python
#-*- coding: utf-8 -*-
print("\n")

class Foo:
  aMemberVar="aMemberVar Member Variable"0
  aFuncName="aMemberFunc"0
  def aMemberFunc():
    print("Inside `aMemberFunc()`")

foo = Foo()
print(" \n")

Regards

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions