Is there real value in a portable language targeting very different runtimes?

Another question over on SO introduced me to Oxygene, formerly Chrome before the browser of the same name came to prominence. It’s in the Pascal syntax family, but brings in a lot of object-oriented grammar and elements from the C family, notably Java/C#. One of its big advertised strengths is that the language is implemented as runtime-independent; programs written in Oxygene can target .NET, J2EE, Android, or Cocoa, making it a memory-managed language almost as portable as C/C++ is in unmanaged-land.

However, my question is whether that kind of independence is really useful, given that the frameworks and environments it targets are so different (and incompatible). There are a host of problems inherent in writing one program that can be compiled as-is to target all three of these runtimes, and a common language is only the tip of the iceberg. Java doesn’t have a System.Windows.Forms namespace; it has java.swing, and the classes underneath are totally different. Similarly, Java’s database interop is via JDBC, while .NET has the ADO.NET sub-framework. While having a common language is nice, being fluent in a “language” is as much (more, IMO) about being fluent in the targeted libraries as it is with the syntax of the language.

Does anyone have a common example of where runtime-independent languages have been leveraged to create truly portable programs across all supported runtimes?

6

I’m not familiar with Oxygene but from time I spent looking into Fantom and similar other languages that do what you’re referring to, what I found was that they weren’t as you’re suggesting requiring you to know the different libraries.

The killer functionality they have is a single library that translates to the independent separate ones; so you write code against the Fantom library using their UI functions, and it will translate it to Swing or WinForms depending on whether you compile it to .NET or Java. In this way you don’t need to know anything about either the .NET or Java libraries, you know one library and it will handle the translation for you on those standard things like DB access, GUI, networking, et al.

4

You’re assuming the language is designed to be able to compile the exact same program as-is for different platforms. That doesn’t appear to be the case. It’s portable in the same way as C and C++ are portable. Your core language is the same on all platforms, but you target the native runtime environments. In other words, the language is cross platform, not the application.

Even for cross platform applications, maintaining different sets of platform-specific code is fairly common. Even if you can’t reuse the platform-specific code, using the same language allows a lot of code reuse, if you structure your application properly.

For example, I maintain a program for both Java/Swing and Java/Android, for which 75% of the code is reused between platforms, even though both apps are completely native. That’s not as nice as 100%, but it sure beats the 0% of common code I would get if I ported to Objective C/iOS.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Is there real value in a portable language targeting very different runtimes?

Another question over on SO introduced me to Oxygene, formerly Chrome before the browser of the same name came to prominence. It’s in the Pascal syntax family, but brings in a lot of object-oriented grammar and elements from the C family, notably Java/C#. One of its big advertised strengths is that the language is implemented as runtime-independent; programs written in Oxygene can target .NET, J2EE, Android, or Cocoa, making it a memory-managed language almost as portable as C/C++ is in unmanaged-land.

However, my question is whether that kind of independence is really useful, given that the frameworks and environments it targets are so different (and incompatible). There are a host of problems inherent in writing one program that can be compiled as-is to target all three of these runtimes, and a common language is only the tip of the iceberg. Java doesn’t have a System.Windows.Forms namespace; it has java.swing, and the classes underneath are totally different. Similarly, Java’s database interop is via JDBC, while .NET has the ADO.NET sub-framework. While having a common language is nice, being fluent in a “language” is as much (more, IMO) about being fluent in the targeted libraries as it is with the syntax of the language.

Does anyone have a common example of where runtime-independent languages have been leveraged to create truly portable programs across all supported runtimes?

6

I’m not familiar with Oxygene but from time I spent looking into Fantom and similar other languages that do what you’re referring to, what I found was that they weren’t as you’re suggesting requiring you to know the different libraries.

The killer functionality they have is a single library that translates to the independent separate ones; so you write code against the Fantom library using their UI functions, and it will translate it to Swing or WinForms depending on whether you compile it to .NET or Java. In this way you don’t need to know anything about either the .NET or Java libraries, you know one library and it will handle the translation for you on those standard things like DB access, GUI, networking, et al.

4

You’re assuming the language is designed to be able to compile the exact same program as-is for different platforms. That doesn’t appear to be the case. It’s portable in the same way as C and C++ are portable. Your core language is the same on all platforms, but you target the native runtime environments. In other words, the language is cross platform, not the application.

Even for cross platform applications, maintaining different sets of platform-specific code is fairly common. Even if you can’t reuse the platform-specific code, using the same language allows a lot of code reuse, if you structure your application properly.

For example, I maintain a program for both Java/Swing and Java/Android, for which 75% of the code is reused between platforms, even though both apps are completely native. That’s not as nice as 100%, but it sure beats the 0% of common code I would get if I ported to Objective C/iOS.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật