Commit 499c3144 authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent d1b67906
Loading
Loading
Loading
Loading
+1 −1
Changes for 07_expressions/0701_operators/070101_arithmetic_operators/Syn_070101_ArithmeticOperators_001.ttcn: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_001 {
module Syn_070101_ArithmeticOperators_001 {

const integer c_result := 10 + 2;

+1 −1
Changes for 07_expressions/0701_operators/070101_arithmetic_operators/Syn_070101_ArithmeticOperators_002.ttcn: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_001 {
module Syn_070101_ArithmeticOperators_001 {

const integer c_result := 10 - 2;

+1 −1
Changes for 07_expressions/0701_operators/070101_arithmetic_operators/Syn_070101_ArithmeticOperators_003.ttcn: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_003 {
module Syn_070101_ArithmeticOperators_003 {

const integer c_result := 10 * 2;

+1 −1
Changes for 07_expressions/0701_operators/070101_arithmetic_operators/Syn_070101_ArithmeticOperators_004.ttcn: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_004 {
module Syn_070101_ArithmeticOperators_004 {

const integer c_result := 10 / 3;

+1 −1
Changes for 07_expressions/0701_operators/070101_arithmetic_operators/Syn_070101_ArithmeticOperators_005.ttcn: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 ** @verdict  pass accept, noexecution
 *****************************************************************/

module Sem_070101_ArithmeticOperators_005 {
module Syn_070101_ArithmeticOperators_005 {

const integer c_result := 10 mod 3;

Loading