/* JavaScript & TypeScript */
(() => {
let mainLanguage = `
The language I grew up with as a developer,
Multi-Purpose is everywhere in today's technology landscape.
`
console.log(mainLanguage)
})()
// Golang
func main () {
backendFav := "My favorite backend language,"
becomeAMaster := "I would like to become a master in this language"
superpowers := fmt.Sprintf("%s %s", backendFav, becomeAMaster)
fmt.Println(superpowers)
}
// React Native - React
const MobileApps = () => (
<View>
<Text>I have built applications with this technology</Text>
<Text>I find it very good for making fast applications.</Text>
</View>
)
// Kotlin & Jetpack Compose
@Composable
fun NewWayOfMakeAndroid () {
Column {
Text("Exploring Kotlin and Jetpack Compose,")
Text("fascinated by the concise syntax and declarativeness of this")
Text("new way of developing Android apps.")
}
}
// Java
public class Main {
public static void main(String[] args) {
String knowledge = "Deepening my knowledge of Java, a language that allows me to ";
String strongLang = "create robust and scalable applications";
System.out.println(knowledge + strongLang);
}
}