<?php namespace SP\Deneme\Interfaces;
interface ArabaInterface
{
public function calistir(MotorInterface $motor);
}
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
import java.util.Scanner; | |
public class Program { | |
public static void main(String[] args) { | |
final int SAYI_ADET = 10; | |
int[] sayilar = new int[SAYI_ADET]; |
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
const express = require('express') | |
const sleep = require('sleep') | |
const app = express() | |
const router = express.Router() | |
router.get('/', function (req, res) { | |
new Promise(function (resolve) { |
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 | |
// comma seperated tag list | |
$tags = $_POST['tags']; | |
$contentId = $_POST['contentId']; | |
$tagIds = InsertTagsAndGetIds(explode(',', $tags)); | |
foreach ($tagIds as $tagId) { |
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
<input indirim_orani="5" rel="pay" type="radio" name="odeme_yontemi" value="cash" />cash | |
<input indirim_orani="3" rel="pay" type="radio" name="odeme_yontemi" value="credit" />credit | |
<input indirim_orani="0" rel="pay" type="radio" name="odeme_yontemi" value="bingbong" />bingbong | |
<hr /> | |
Toplam fiyat: <span id="toplam_fiyat"></span><br /> | |
İndirimli fiyat: <span id="indirimli_fiyat"></span> |