microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
msoeken/depth_time

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

samples/language/MultiFileProject/src/Particle.qs

9lines · modecode

1struct Particle { X : Int, Y : Int, Z : Int }
2
3function addParticles(a : Particle, b : Particle) : Particle {
4 return new Particle {
5 X = a.X + b.X,
6 Y = a.Y + b.Y,
7 Z = a.Z + b.Z
8 };
9}
10