This file contains hidden or 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
<!doctype html> | |
<html> | |
<head> | |
<script type="text/javascript"> | |
document.write('Hello world'); | |
</script> | |
</head> | |
<body> | |
</body> |
This file contains hidden or 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
<!doctype html> | |
<html> | |
<head> | |
<title>Test github:gist</title> | |
</head> | |
<body> | |
<script src="https://gist.github.com/1295443.js"> </script> | |
</body> | |
</html> |
This file contains hidden or 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 | |
$s = 'miffmedia.com'; | |
if(preg_match("/\./",$s)) echo 'Postoji znak .'; | |
$s1 = 'miffmedia+com'; | |
if(preg_match("/\+/",$s1)) echo 'Postoji znak + .'; | |
?> |
This file contains hidden or 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
using System; | |
namespace predavanje2 | |
{ | |
public class NizOblika | |
{ | |
private Oblik[] nizO; | |
private int duzina; | |
public NizOblika(int d) { | |
nizO = new Oblik[d]; |
NewerOlder