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
| cmake_minimum_required (VERSION 3.1.0) | |
| project (RTWeekend VERSION 3.0.0 LANGUAGES CXX) | |
| set (CMAKE_CXX_STANDARD 11) | |
| add_executable(inOneWeekend main.cc) | |
| ### Setup: | |
| # cmake -B build | |
| ### Build: | |
| # cmake --build build |
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 'package:flutter/material.dart'; | |
| import 'dart:math'; | |
| void main() { | |
| runApp(new EmilysDemoApp()); | |
| } | |
| class EmilysDemoApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
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
| package valvar | |
| import akka.actor.Actor | |
| import akka.actor.Props | |
| import collection.mutable.MutableList | |
| import scala.concurrent.duration._ | |
| import scala.concurrent.ExecutionContext.Implicits.global | |
| object Logger { | |
| case class Result(list: List[Int]) |