mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 09:41:36 +00:00
Compare commits
3 Commits
997d5b3e20
...
f1891ba3a5
Author | SHA1 | Date | |
---|---|---|---|
|
f1891ba3a5 | ||
|
5d0fe40db8 | ||
|
8350b334be |
@ -41,7 +41,7 @@ program example ! declare a program called example.
|
||||
real :: v, x ! WARNING: default initial values are compiler dependent!
|
||||
real :: a = 3, b = 2E12, c = 0.01
|
||||
integer :: i, j, k = 1, m
|
||||
real, parameter :: PI = 3.1415926535897931 ! declare a constant.
|
||||
real, parameter :: PI = 3.14159265 ! declare a constant.
|
||||
logical :: y = .TRUE., n = .FALSE. ! boolean type.
|
||||
complex :: w = (0, 1) ! sqrt(-1)
|
||||
character(len=3) :: month ! string of 3 characters.
|
||||
|
@ -181,7 +181,7 @@ $ git add HelloWorld.java
|
||||
# add a file in a nested dir
|
||||
$ git add /path/to/file/HelloWorld.c
|
||||
|
||||
# Regular Expression support!
|
||||
# Shell glob patterns make it easy to specify multiple files:
|
||||
$ git add ./*.java
|
||||
|
||||
# You can also add everything in your working directory to the staging area.
|
||||
|
Loading…
Reference in New Issue
Block a user