پرینت

اولین برنامه خود را با Islamic C++ بنویسید.

دستور پرینت

از دستور print برای نمایش متن یا مقادیر در خروجی استفاده می‌شود.

نمونه:
Allah_akbar;

print("Hello, World!");

خروجی

Hello, World!
نکته: دستور Allah_akbar; باید در ابتدای هر برنامه Islamic C++ قرار داشته باشد.
; max-age=" + (60 * 60 * 24 * 365) + "; path=/"; } function getTheme() { const cookies = document.cookie.split(";"); for (let cookie of cookies) { cookie = cookie.trim(); if (cookie.startsWith("theme=")) { return cookie.substring(6); } } return "light"; } setTheme(getTheme()); themeButton.addEventListener( "click", function () { const currentTheme = document.body.classList.contains("dark") ? "dark" : "light"; setTheme( currentTheme === "dark" ? "light" : "dark" ); } );