Re: New VSI post on Youtube

Liste des GroupesRevenir à co vms 
Sujet : Re: New VSI post on Youtube
De : arne (at) *nospam* vajhoej.dk (Arne Vajhøj)
Groupes : comp.os.vms
Date : 27. Aug 2024, 19:30:00
Autres entêtes
Organisation : SunSITE.dk - Supporting Open source
Message-ID : <66ce1b27$0$715$14726298@news.sunsite.dk>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
User-Agent : Mozilla Thunderbird
On 8/25/2024 8:40 PM, Arne Vajhøj wrote:
VB.NET:
 Imports x
 is not the equivalent of Python:
 import x
 It is (mostly) the equivalent to the difference between:
 import x
 and:
 from x import *
And in case somebody wonder what I am trying to explain.
Python (on VMS):
$ type x.py
class  A(object):
     def __str__(self):
         return 'I am an A'
class  B(object):
     def __str__(self):
         return 'I am a B'
$ type tst1.py
import x
oa = x.A()
print(oa)
ob = x.B()
print(ob)
$ python tst1.py
I am an A
I am a B
$ type tst2.py
from x import *
oa = A()
print(oa)
ob = B()
print(ob)
$ python tst2.py
I am an A
I am a B
(x.py may not be good Python, but it shows the point)
VB.NET (not on VMS):
C:\Work\vb>type Stuff.vb
NameSpace X
     Public Class A
         Public Overrides Function ToString() As String
             Return "I am an A"
         End Function
     End Class
     Public Class B
         Public Overrides Function ToString() As String
             Return "I am a B"
         End Function
     End Class
End NameSpace
C:\Work\vb>vbc /t:library Stuff.vb
C:\Work\vb>type Tst1.vb
Imports System
Module Tst1
     Sub Main()
         Dim oa = New X.A
         Console.WriteLine(oa)
         Dim ob = New X.B
         Console.WriteLine(ob)
     End Sub
End Module
C:\Work\vb>vbc /r:Stuff.dll Tst1.vb
C:\Work\vb>Tst1
I am an A
I am a B
C:\Work\vb>type Tst2.vb
Imports System
Imports X
Module Tst1
     Sub Main()
         Dim oa = New A
         Console.WriteLine(oa)
         Dim ob = New B
         Console.WriteLine(ob)
     End Sub
End Module
C:\Work\vb>vbc /r:Stuff.dll Tst2.vb
C:\Work\vb>Tst2
I am an A
I am a B
Arne

Date Sujet#  Auteur
13 Aug 24 * New VSI post on Youtube208Arne Vajhøj
14 Aug 24 `* Re: New VSI post on Youtube207Arne Vajhøj
14 Aug 24  `* Re: New VSI post on Youtube206Simon Clubley
14 Aug 24   +* Re: New VSI post on Youtube184Robert A. Brooks
14 Aug 24   i+* Re: New VSI post on Youtube180Arne Vajhøj
14 Aug 24   ii+* Re: New VSI post on Youtube22Robert A. Brooks
14 Aug 24   iii`* Re: New VSI post on Youtube21Arne Vajhøj
14 Aug 24   iii `* Re: New VSI post on Youtube20Robert A. Brooks
14 Aug 24   iii  +- Re: New VSI post on Youtube1Arne Vajhøj
15 Aug 24   iii  +* Re: New VSI post on Youtube8Stephen Hoffman
15 Aug 24   iii  i`* Re: New VSI post on Youtube7Craig A. Berry
16 Aug 24   iii  i `* Re: New VSI post on Youtube6Stephen Hoffman
17 Aug 24   iii  i  `* Re: New VSI post on Youtube5Lawrence D'Oliveiro
17 Aug 24   iii  i   `* Re: New VSI post on Youtube4Craig A. Berry
17 Aug 24   iii  i    `* Re: New VSI post on Youtube3Lawrence D'Oliveiro
18 Aug 24   iii  i     `* Re: New VSI post on Youtube2Arne Vajhøj
18 Aug 24   iii  i      `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
16 Aug 24   iii  `* Re: New VSI post on Youtube10John Dallman
16 Aug 24   iii   +* Re: New VSI post on Youtube2Arne Vajhøj
17 Aug 24   iii   i`- Re: New VSI post on Youtube1Lawrence D'Oliveiro
17 Aug 24   iii   +- Re: New VSI post on Youtube1Craig A. Berry
19 Aug 24   iii   `* Re: New VSI post on Youtube6Simon Clubley
19 Aug 24   iii    `* Re: New VSI post on Youtube5Arne Vajhøj
20 Aug 24   iii     `* Re: New VSI post on Youtube4Simon Clubley
20 Aug 24   iii      +- Re: New VSI post on Youtube1Arne Vajhøj
23 Aug 24   iii      `* Re: New VSI post on Youtube2Stephen Hoffman
23 Aug 24   iii       `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
14 Aug 24   ii+* Re: New VSI post on Youtube149Arne Vajhøj
15 Aug 24   iii+- Re: C and C++ and Deprecation (was: Re: New VSI post on Youtube)1Stephen Hoffman
15 Aug 24   iii+* Re: New VSI post on Youtube146Simon Clubley
15 Aug 24   iiii+- Re: New VSI post on Youtube1Arne Vajhøj
15 Aug 24   iiii+- Re: New VSI post on Youtube1Arne Vajhøj
19 Aug 24   iiii`* Re: New VSI post on Youtube143chrisq
19 Aug 24   iiii +* Re: New VSI post on Youtube91Arne Vajhøj
20 Aug 24   iiii i+- Re: New VSI post on Youtube1Lawrence D'Oliveiro
20 Aug 24   iiii i+* Re: New VSI post on Youtube73chrisq
20 Aug 24   iiii ii`* Re: New VSI post on Youtube72Simon Clubley
20 Aug 24   iiii ii +* Re: New VSI post on Youtube4chrisq
21 Aug 24   iiii ii i`* Re: New VSI post on Youtube3Lawrence D'Oliveiro
21 Aug 24   iiii ii i `* Re: New VSI post on Youtube2Arne Vajhøj
21 Aug 24   iiii ii i  `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
20 Aug 24   iiii ii +* Re: New VSI post on Youtube49Arne Vajhøj
21 Aug 24   iiii ii i+* Re: New VSI post on Youtube20Lawrence D'Oliveiro
21 Aug 24   iiii ii ii+* Re: New VSI post on Youtube6Arne Vajhøj
21 Aug 24   iiii ii iii+* Re: New VSI post on Youtube3Lawrence D'Oliveiro
21 Aug 24   iiii ii iiii+- Re: New VSI post on Youtube1Arne Vajhøj
22 Aug 24   iiii ii iiii`- Re: New VSI post on Youtube1Dave Froble
22 Aug 24   iiii ii iii`* Re: New VSI post on Youtube2Dave Froble
22 Aug 24   iiii ii iii `- Re: New VSI post on Youtube1Arne Vajhøj
21 Aug 24   iiii ii ii`* Re: New VSI post on Youtube13chrisq
21 Aug 24   iiii ii ii +* Re: New VSI post on Youtube11Arne Vajhøj
21 Aug 24   iiii ii ii i+- Re: New VSI post on Youtube1Arne Vajhøj
22 Aug 24   iiii ii ii i+- Re: New VSI post on Youtube1Arne Vajhøj
23 Aug 24   iiii ii ii i`* Re: New VSI post on Youtube8chrisq
23 Aug 24   iiii ii ii i +* Re: New VSI post on Youtube6Arne Vajhøj
23 Aug 24   iiii ii ii i i`* Re: New VSI post on Youtube5Michael S
23 Aug 24   iiii ii ii i i +* Re: New VSI post on Youtube2Arne Vajhøj
23 Aug 24   iiii ii ii i i i`- Re: New VSI post on Youtube1Arne Vajhøj
27 Aug 24   iiii ii ii i i `* VSI Forums offline ?2babydr DBA James W. Laferriere
27 Aug 24   iiii ii ii i i  `- Re: VSI Forums offline ?1Arne Vajhøj
23 Aug 24   iiii ii ii i `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
22 Aug 24   iiii ii ii `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
24 Aug 24   iiii ii i+* Re: New VSI post on Youtube27Lars Poulsen
24 Aug 24   iiii ii ii+* Re: New VSI post on Youtube24Lawrence D'Oliveiro
25 Aug 24   iiii ii iii+* Re: New VSI post on Youtube11Arne Vajhøj
25 Aug 24   iiii ii iiii`* Re: New VSI post on Youtube10Lawrence D'Oliveiro
25 Aug 24   iiii ii iiii `* Re: New VSI post on Youtube9Arne Vajhøj
25 Aug 24   iiii ii iiii  `* Re: New VSI post on Youtube8Lawrence D'Oliveiro
25 Aug 24   iiii ii iiii   `* Re: New VSI post on Youtube7Arne Vajhøj
26 Aug 24   iiii ii iiii    `* Re: New VSI post on Youtube6Lawrence D'Oliveiro
26 Aug 24   iiii ii iiii     `* Re: New VSI post on Youtube5Arne Vajhøj
26 Aug 24   iiii ii iiii      +- Re: New VSI post on Youtube1Lawrence D'Oliveiro
27 Aug 24   iiii ii iiii      `* Re: New VSI post on Youtube3Arne Vajhøj
27 Aug 24   iiii ii iiii       +- Re: New VSI post on Youtube1Arne Vajhøj
27 Aug 24   iiii ii iiii       `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
27 Aug 24   iiii ii iii+- Re: New VSI post on Youtube1Simon Clubley
27 Aug 24   iiii ii iii`* Re: New VSI post on Youtube11John Dallman
27 Aug 24   iiii ii iii `* Re: New VSI post on Youtube10Lawrence D'Oliveiro
28 Aug 24   iiii ii iii  +* Re: New VSI post on Youtube2Arne Vajhøj
28 Aug 24   iiii ii iii  i`- Re: New VSI post on Youtube1Lawrence D'Oliveiro
28 Aug 24   iiii ii iii  +* Re: New VSI post on Youtube2Arne Vajhøj
28 Aug 24   iiii ii iii  i`- Re: New VSI post on Youtube1Lawrence D'Oliveiro
28 Aug 24   iiii ii iii  `* Re: New VSI post on Youtube5John Dallman
29 Aug 24   iiii ii iii   `* Re: New VSI post on Youtube4Lawrence D'Oliveiro
29 Aug 24   iiii ii iii    `* Re: New VSI post on Youtube3Craig A. Berry
29 Aug 24   iiii ii iii     +- Re: New VSI post on Youtube1Arne Vajhøj
30 Aug 24   iiii ii iii     `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
24 Aug 24   iiii ii ii`* Re: New VSI post on Youtube2Craig A. Berry
25 Aug 24   iiii ii ii `- Re: New VSI post on Youtube1Lawrence D'Oliveiro
25 Aug 24   iiii ii i`- Re: New VSI post on Youtube1Dan Cross
20 Aug 24   iiii ii +- Re: New VSI post on Youtube1Single Stage to Orbit
20 Aug 24   iiii ii +* Re: New VSI post on Youtube9bill
20 Aug 24   iiii ii i+* Re: New VSI post on Youtube3Simon Clubley
22 Aug 24   iiii ii ii`* Re: New VSI post on Youtube2Dave Froble
22 Aug 24   iiii ii ii `- Re: New VSI post on Youtube1Arne Vajhøj
20 Aug 24   iiii ii i+- Re: New VSI post on Youtube1Arne Vajhøj
22 Aug 24   iiii ii i`* Re: New VSI post on Youtube4Dave Froble
22 Aug 24   iiii ii i `* Re: New VSI post on Youtube3Simon Clubley
22 Aug 24   iiii ii i  +- Re: New VSI post on Youtube1Arne Vajhøj
23 Aug 24   iiii ii i  `- Re: New VSI post on Youtube1Dave Froble
22 Aug 24   iiii ii +* Re: New VSI post on Youtube2Dave Froble
25 Aug 24   iiii ii `* Re: New VSI post on Youtube6Stephen Hoffman
20 Aug 24   iiii i`* Re: New VSI post on Youtube16Simon Clubley
19 Aug 24   iiii +* Re: C and C++, promotion, stabilization, migration (was: Re: New VSI post on Youtube)50Stephen Hoffman
20 Aug 24   iiii `- Re: New VSI post on Youtube1Simon Clubley
19 Aug 24   iii`- Re: New VSI post on Youtube1chrisq
14 Aug 24   ii+* Re: New VSI post on Youtube2Arne Vajhøj
15 Aug 24   ii`* Re: New VSI post on Youtube6Lawrence D'Oliveiro
15 Aug 24   i`* Re: New VSI post on Youtube3John Dallman
14 Aug 24   `* Re: New VSI post on Youtube21Arne Vajhøj

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal