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
#include "raylib.h" | |
#include "bullet/btBulletDynamicsCommon.h" | |
#include <iostream> | |
#define WIN_MINSIZEX 1280 | |
#define WIN_MINSIZEY 720 | |
int main() | |
{ | |
Camera3D maCamera = { 0 }; |
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 | |
$page = $_GET['page'] ?? null; | |
switch($page) { | |
case 'accueil': | |
echo "<h1>Accueil</h1>"; | |
exit(); | |
case 'about' : |
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
import SwiftUI | |
struct CounterView: View { | |
@State private var counter = 0 | |
@State private var showAlert = false | |
var body: some View { | |
VStack { | |
Text("\(counter)") | |
Button("+") { | |
counter += 1 |