File: float.proto

package info (click to toggle)
python-aristaproto 1.2%2Breally0.1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: python: 6,521; java: 106; xml: 84; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 295 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";

package float;

// Some documentation about the Test message.
message Test {
    double positive = 1;
    double negative = 2;
    double nan = 3;
    double three = 4;
    double three_point_one_four = 5;
    double neg_three = 6;
    double neg_three_point_one_four = 7;
}