Gource is a software version control visualization tool.
Software projects are displayed by Gource as an animated tree with the root directory of the project at its centre. Directories appear as branches with files as leaves. Developers can be seen working on the tree at the times they contributed to the project.
πΆοΈ
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
| /* math.h | |
| Definitions for the math floating point package. | |
| Copyright (c) 1987, 1992 by Borland International | |
| All Rights Reserved. | |
| */ | |
| #ifndef __MATH_H | |
| #define __MATH_H |
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<iostream> | |
| #include<cmath> | |
| using namespace std; | |
| int main() | |
| { | |
| //-------defining variables and initializing them------------- | |
| double num1, num2; | |
| char operation, redo; |
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
| πΆββοΈ 185km ββββββββββββββββββββ | |
| βπββοΈ 133km ββββββββββββββββββββ | |
| π 80km ββββββββββββββββββββ | |
| π΄ββοΈ 23km ββββββββββββββββββββ | |
| π₯Ύ 19km ββββββββββββββββββββ | |
| 439km total |
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
| use kingkong::prelude::*; | |
| routes! { | |
| GET "/" => |_| "Hello World."; | |
| } | |
| fn main() { | |
| kingkong::run!().unwrap(); | |
| } |