This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The text that start with hashes are called comments. They are not visible to your computer, so you can put anything | |
# there. | |
# Functions allow us to do something (they trigger an action) | |
print("Text") | |
# Variables store data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
session_name("SkyMakeSessionStorage"); | |
session_start(); | |
include_once "../SkyMakeDatabaseConnector/SkyMakeDBconfig.php"; | |
include_once "../SkyMakeConfiguration.php"; | |
include_once "../SkyMakeFunctionSet/Operation-Requirements/MainFunctions.php"; | |
include "../classes/user.php"; | |
$client_id = ''; | |
$client_secret = ''; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Değişkenler | |
x = 1 | |
y = "String" | |
a = 4 | |
b = 8 | |
# Semboller | |
# * Çarpma | |
# + Toplama |