Skip to content

Instantly share code, notes, and snippets.

@fernandopdna
fernandopdna / index.html
Last active July 18, 2023 07:21
Program pertama javascript
<html>
<head>
<title>My JavaScript Project</title>
</head>
<body>
<script >
console.log("Hello World!")
</script>
</body>
</html>
@fernandopdna
fernandopdna / Check.txt
Last active July 10, 2023 08:05
Cek instalasi kotlin
kotlinc –version
//Jika perintah berhasil dieksekusi, Kamu akan melihat versi Kotlin yang terpasang.
@fernandopdna
fernandopdna / HelloWorld.kt
Created July 10, 2023 04:07
Program pertama dengan kotlin
fun main(){
println("Hello World!")
}