Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Erlang

% helloworld
-module(helloworld).
% import function used to import the io module
-import(io,[fwrite/1]).
% export function used to ensure the start function can be accessed.
-export([start/0]).

start() ->
	fwrite("
Hello, World!
Nama  : Bintang Eka Putra
TTL   : Sukoharjo, 31 Oktober 1999
Asal  : Sukoharjo
Motto :
 Jangan menyesali perbuatanmu, jika yang kamu lakukan adalah yang terbaik
Alasan memilih informatika :
 Informatika itu fleksibel dan akan sangat dibutuhkan

").


Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.